mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-13 19:02:05 +01:00
- restructured source and added build configuration to build all non-UI projects without the need for a DevExpress license
This commit is contained in:
29
source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.cs
Normal file
29
source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System.Windows.Forms;
|
||||
using DevExpress.XtraEditors;
|
||||
|
||||
namespace ChanSort.Loader.LG
|
||||
{
|
||||
public partial class PresetProgramNrDialog : XtraForm
|
||||
{
|
||||
public PresetProgramNrDialog()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void linkDetails_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
||||
{
|
||||
try
|
||||
{
|
||||
BrowserHelper.OpenUrl(
|
||||
"http://sourceforge.net/p/chansort/wiki/Channels%20disappear%20or%20change%20program%20numbers%20randomly/");
|
||||
}
|
||||
catch { }
|
||||
}
|
||||
|
||||
private void btnOk_Click(object sender, System.EventArgs e)
|
||||
{
|
||||
if (ModifierKeys == (Keys.Alt|Keys.Control))
|
||||
this.DialogResult = DialogResult.Yes;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user