예제 #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);
 }