我想在SVNNotifier
中添加自动/常量结帐,然后我下载了他们的开源代码来更改它。这是我第一次尝试修改开源代码。
我想在更新部分添加一个名为“AutoCheckout”的复选框,但是我收到此错误消息,我不明白:
错误1类型'CHD.SVN_Notifier.SettingsForm'已包含'checkBox_AutoCheckout'的定义C:\ Users \ conrad.chamerski \ Documents \ SVNNotifier \ SVN_Notifier \ SettingsForm.cs 1189 22 SVN_Notifier
我不明白的是,有一个区域有一堆代码:
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox textBox_SVNpath;
private System.Windows.Forms.TextBox textBox_TortoiseSVNpath;
private System.Windows.Forms.Button button_OK;
private System.Windows.Forms.Button button_Cancel;
private System.Windows.Forms.Button button_BrowseSvn;
private System.Windows.Forms.Button button_BrowseTortoise;
private System.Windows.Forms.OpenFileDialog openFileDialog_svn;
private System.Windows.Forms.OpenFileDialog openFileDialog_Tortoise;
还有更多...... 但是复选框的定义在哪里?
我的复选框代码已添加到SettingsForm.cs
private void checkBox_AutoCommit(object sender, System.EventArgs e)
{
MessageBox.Show("AutoCommit");
}
答案 0 :(得分:1)
我发现我的错误是由于缺乏知识。
申请表格简单,无需编码。选中此框后,我们通常会按OK butto
。 “确定”按钮具有events
,thunderbolt icon
位于properties
。通过双击click属性,我们可以获得所有代码。现在,我们知道当按下OK时发生了什么,我们可以配置它。