コード例 #1
0
 private void kbtnAllColoursAsRGB_Click(object sender, EventArgs e)
 {
     try
     {
         KryptonPaletteDebugManagement.PropagateRGBColourValues(klblRGBValues, kchkAutomaticallyUpdateValues.Checked);
     }
     catch (Exception exc)
     {
         throw;
     }
 }
コード例 #2
0
 private void kbtnAllColoursAsHex_Click(object sender, EventArgs e)
 {
     try
     {
         KryptonPaletteDebugManagement.PropagateHEXColourValues(klbHexValues, kchkUseUppercase.Checked);
     }
     catch (Exception exc)
     {
         ExceptionHandler.CaptureException(exc, icon: MessageBoxIcon.Error, methodSignature: Helpers.GetCurrentMethod());
     }
 }