FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
StatusLogWindow.cs 913 B
Newer Older
using System;
using System.Windows.Forms;

namespace WpkgNotifier
{
        {
            InitializeComponent();
            this.Icon = WpkgNotifier.Properties.Resources.wpkgIcon;

        private void Form1_Load(object sender, EventArgs e)
        {

        }
        private void OkButton_Click(object sender, EventArgs e)
        private void CopyButton_Click(object sender, EventArgs e)
        {
            Clipboard.Clear();
            Clipboard.SetText(textBox.Text);
        }
        internal void BindStatusLines(StatusLines statusLines)
        {
            textBox.DataBindings.Add("Text", statusLines, "Lines", false, DataSourceUpdateMode.OnPropertyChanged, "Nothing found");
        }