view ServerMonitor/Forms/CheckBoxDialog.cs @ 6:c1dffaac66fa

- Don't show multiple password dialogs for the same key if the first one was cancelled. - Add option to trim log files.
author Brad Greco <brad@bgreco.net>
date Fri, 01 Mar 2019 21:38:22 -0500
parents 3e1a2131f897
children 7127d5b5ac75
line wrap: on
line source

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace ServerMonitorApp
{
    public partial class CheckBoxDialog : Form
    {
        public string Message { get; set; }

        public bool Checked { get; private set; }

        public CheckBoxDialog()
        {
            InitializeComponent();
        }

        private void CheckBoxDialog_Load(object sender, EventArgs e)
        {
            MessageIcon.Image = SystemIcons.Question.ToBitmap();
            MessageLabel.Text = Message;
        }

        private void PromptCheckBox_CheckedChanged(object sender, EventArgs e)
        {
            Checked = PromptCheckBox.Checked;
        }
    }
}