Inheritance: System.Windows.Forms.Form
コード例 #1
0
ファイル: PositionModule.cs プロジェクト: stewmc/vixen
		public override bool Setup()
		{
			using (SetupForm setupForm = new SetupForm(this)) {
				if (setupForm.ShowDialog() == DialogResult.OK) {
					if (_HaveMap(Owner)) {
						_ParseNode(Owner);
					}
					return true;
				}
				return false;
			}
		}