コード例 #1
0
ファイル: frmProperties.cs プロジェクト: ealakhras/archiver
        public static void Show(IUsesPropertiesForm owner)
        {
            frmProperties f = new frmProperties(owner);

            f.ShowDialog();
        }
コード例 #2
0
ファイル: frmProperties.cs プロジェクト: ealakhras/archiver
 protected void Populate(IUsesPropertiesForm owner)
 {
     mOwner = owner;
     Text   = $"{(owner.GetType().ToString())} Properties";
 }
コード例 #3
0
ファイル: frmProperties.cs プロジェクト: ealakhras/archiver
 public frmProperties(IUsesPropertiesForm owner)
 {
     Populate(owner);
 }