コード例 #1
0
        private void importKeyButton_Click(object sender, EventArgs e)
        {
            ImportKey    form   = new ImportKey();
            DialogResult result = form.ShowDialog();

            if (result == DialogResult.OK)
            {
                keyEditor.Key = form.ImportedKey;
            }
        }
コード例 #2
0
ファイル: KeyManagerEditorUI.cs プロジェクト: bnantz/NCS-V1-1
        private void importKeyButton_Click(object sender, EventArgs e)
        {
            ImportKey form = new ImportKey();
            DialogResult result = form.ShowDialog();

            if (result == DialogResult.OK)
            {
                keyEditor.Key = form.ImportedKey;
            }
        }