コード例 #1
0
ファイル: PwEntryForm.cs プロジェクト: rdealexb/keepass
        private string CreateFieldReference()
        {
            FieldRefForm dlg = new FieldRefForm();
            dlg.InitEx(m_pwDatabase.RootGroup, m_ilIcons);

            string strResult = string.Empty;
            if(dlg.ShowDialog() == DialogResult.OK) strResult = dlg.ResultReference;

            UIUtil.DestroyForm(dlg);
            return strResult;
        }
コード例 #2
0
ファイル: PwEntryForm.cs プロジェクト: jonbws/strengthreport
        private string CreateFieldReference()
        {
            FieldRefForm dlg = new FieldRefForm();
            dlg.InitEx(m_pwDatabase.RootGroup, m_ilIcons);

            if(dlg.ShowDialog() == DialogResult.OK) return dlg.ResultReference;

            return string.Empty;
        }