示例#1
0
        public static void Show(IUsesPropertiesForm owner)
        {
            frmProperties f = new frmProperties(owner);

            f.ShowDialog();
        }
示例#2
0
 protected void Populate(IUsesPropertiesForm owner)
 {
     mOwner = owner;
     Text   = $"{(owner.GetType().ToString())} Properties";
 }
示例#3
0
 public frmProperties(IUsesPropertiesForm owner)
 {
     Populate(owner);
 }