hiding of testbutton
This commit is contained in:
@ -21,6 +21,7 @@ namespace CobXmlSupport
|
||||
private bool tmpChkValues;
|
||||
private bool tmpChkAnaTag;
|
||||
private bool tmpChkCountVars;
|
||||
private bool tmpShowTestBtns;
|
||||
private string tmpTxtPrefix;
|
||||
private string tmpTxtExpPrefix;
|
||||
private string tmpTxtMaxOcc;
|
||||
@ -170,6 +171,19 @@ namespace CobXmlSupport
|
||||
chkAnaTag.Checked = value;
|
||||
}
|
||||
}
|
||||
|
||||
public bool ChkShowTestbtns
|
||||
{
|
||||
get
|
||||
{
|
||||
return chkShowTestbtns.Checked;
|
||||
}
|
||||
set
|
||||
{
|
||||
chkShowTestbtns.Checked = value;
|
||||
}
|
||||
}
|
||||
|
||||
public string TxtMaxOcc
|
||||
{
|
||||
get
|
||||
@ -219,6 +233,7 @@ namespace CobXmlSupport
|
||||
Properties.Settings.Default.UniqueVars = chkUniqueVars.Checked;
|
||||
Properties.Settings.Default.Values = chkValues.Checked;
|
||||
Properties.Settings.Default.Wrap = chkWrap.Checked;
|
||||
Properties.Settings.Default.ShowTestbtns= chkShowTestbtns.Checked;
|
||||
Properties.Settings.Default.LogVarName = txtLogPost.Text;
|
||||
Properties.Settings.Default.LogSectName = txtLogSection.Text;
|
||||
Properties.Settings.Default.Save();
|
||||
@ -237,6 +252,7 @@ namespace CobXmlSupport
|
||||
tmpChkWrap = chkWrap.Checked;
|
||||
tmpChkValues = chkValues.Checked;
|
||||
tmpChkAnaTag = chkAnaTag.Checked;
|
||||
tmpShowTestBtns = chkShowTestbtns.Checked;
|
||||
tmpTxtPrefix = txtPrefix.Text;
|
||||
tmpTxtExpPrefix = txtExpPrefix.Text;
|
||||
tmpTxtMaxOcc = txtMaxOcc.Text;
|
||||
@ -257,6 +273,7 @@ namespace CobXmlSupport
|
||||
chkWrap.Checked= tmpChkWrap;
|
||||
chkValues.Checked= tmpChkValues;
|
||||
chkAnaTag.Checked= tmpChkAnaTag;
|
||||
chkShowTestbtns.Checked = tmpShowTestBtns;
|
||||
txtPrefix.Text= tmpTxtPrefix;
|
||||
txtExpPrefix.Text = tmpTxtExpPrefix;
|
||||
txtMaxOcc.Text = tmpTxtMaxOcc;
|
||||
|
||||
Reference in New Issue
Block a user