|
@@ -12,42 +12,42 @@ namespace OTSIncAReportApp._1_UI.Control_Grids
|
|
|
{
|
|
|
public partial class SpectrumExportConfirmation : Form
|
|
|
{
|
|
|
- bool m_SpectrumConfirmation = false;
|
|
|
- bool m_SpectrumData = false;
|
|
|
- bool m_Picture = false;
|
|
|
+ bool m_IfExportSpectrumConfirmation = false;
|
|
|
+ bool m_IfExportSpectrumData = false;
|
|
|
+ bool m_IfExportPicture = false;
|
|
|
string m_savepath = "";
|
|
|
- public bool SpectrumConfirmation
|
|
|
+ public bool IfExportSpectrumConfirmation
|
|
|
{
|
|
|
get
|
|
|
{
|
|
|
- return m_SpectrumConfirmation;
|
|
|
+ return m_IfExportSpectrumConfirmation;
|
|
|
}
|
|
|
set
|
|
|
{
|
|
|
- m_SpectrumConfirmation = value;
|
|
|
+ m_IfExportSpectrumConfirmation = value;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- public bool SpectrumData
|
|
|
+ public bool IfExportSpectrumData
|
|
|
{
|
|
|
get
|
|
|
{
|
|
|
- return m_SpectrumData;
|
|
|
+ return m_IfExportSpectrumData;
|
|
|
}
|
|
|
set
|
|
|
{
|
|
|
- m_SpectrumData = value;
|
|
|
+ m_IfExportSpectrumData = value;
|
|
|
}
|
|
|
}
|
|
|
- public bool Picture
|
|
|
+ public bool IfExportPicture
|
|
|
{
|
|
|
get
|
|
|
{
|
|
|
- return m_Picture;
|
|
|
+ return m_IfExportPicture;
|
|
|
}
|
|
|
set
|
|
|
{
|
|
|
- m_Picture = value;
|
|
|
+ m_IfExportPicture = value;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -89,11 +89,11 @@ namespace OTSIncAReportApp._1_UI.Control_Grids
|
|
|
{
|
|
|
if(cB_SpectrumConfirmation.Checked)
|
|
|
{
|
|
|
- m_SpectrumConfirmation = true;
|
|
|
+ m_IfExportSpectrumConfirmation = true;
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- m_SpectrumConfirmation = false;
|
|
|
+ m_IfExportSpectrumConfirmation = false;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -121,11 +121,11 @@ namespace OTSIncAReportApp._1_UI.Control_Grids
|
|
|
{
|
|
|
if (cB_SpectrumData.Checked)
|
|
|
{
|
|
|
- m_SpectrumData = true;
|
|
|
+ m_IfExportSpectrumData = true;
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- m_SpectrumData = false;
|
|
|
+ m_IfExportSpectrumData = false;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -133,11 +133,11 @@ namespace OTSIncAReportApp._1_UI.Control_Grids
|
|
|
{
|
|
|
if (cB_Picture.Checked)
|
|
|
{
|
|
|
- m_Picture = true;
|
|
|
+ m_IfExportPicture = true;
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- m_Picture = false;
|
|
|
+ m_IfExportPicture = false;
|
|
|
}
|
|
|
}
|
|
|
}
|