private void buttonDensity_Click(object sender, EventArgs e)
 {
     if (FormKit.ShowDialog(screenSize, typeof(FormScreenSize)) == DialogResult.OK)
     {
         loadScreenInfo();
     }
 }
 private void buttonDateSetting_Click(object sender, EventArgs e)
 {
     if (FormKit.ShowDialog(systemDate, typeof(FormSystemDate)) == DialogResult.OK)
     {
         loadSystemDate();
     }
 }
 private void pictureBoxScreenShot_Click(object sender, EventArgs e)
 {
     if (!string.IsNullOrEmpty(screenShotPath))
     {
         Image image = pictureBoxScreenShot.Image;
         imagePreview = (FormImagePreview)FormKit.Show(imagePreview, typeof(FormImagePreview), new object[] { image });
     }
 }