コード例 #1
0
 public static void SaveDesignForm(System.Windows.Forms.SplitterPanel ctr)
 {
     UIMessage.DBEngine.exec("FormLayout_Save",
                             "@FormName", ctr.FindForm().Name,
                             "@ControlName", ctr.Name,
                             "@SystemType", string.Format("{0},{1}", ctr.GetType().FullName, ctr.GetType().Namespace),
                             "@LocationX", ctr.Location.X,
                             "@LocationY", ctr.Location.Y,
                             "@Height", ctr.Size.Height,
                             "@Width", ctr.Size.Width);
 }