CommonSetting.cs 260 B

123456789101112131415
  1. 
  2. using System;
  3. using System.Windows.Forms;
  4. using Dongke.WinForm.Utilities;
  5. namespace Dongke.WinForm.Controls
  6. {
  7. internal class CommonSetting
  8. {
  9. public static void InitControls(Control c)
  10. {
  11. c.Width = 120;
  12. }
  13. }
  14. }