CNCGUI.MainForm.SettingUnchange C# (CSharp) 메소드

SettingUnchange() 개인적인 메소드

private SettingUnchange ( ) : bool
리턴 bool
        private bool SettingUnchange()
        {
            if (m_setting_changed)
                if (MessageBox.Show("Configuration change. Lost all changes ?", "Attention", MessageBoxButtons.YesNo, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button2) == DialogResult.No)
                    return false;
            return true;
        }