FrmOrdersCustomerRecord.cs 872 B

1234567891011121314151617181920212223242526272829303132
  1. using LYFZ.ComponentLibrary;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace LYFZ.Software.UI.Customers
  11. {
  12. public partial class FrmOrdersCustomerRecord : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmOrdersCustomerRecord()
  15. {
  16. InitializeComponent();
  17. this.IsCustomScrollBar = true;
  18. panelEx1.BorderStyle = BorderStyle.FixedSingle;
  19. panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
  20. panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  21. }
  22. protected virtual void txtCus_QQ_KeyPress(object sender, KeyPressEventArgs e)
  23. {
  24. //throw new NotImplementedException();
  25. }
  26. }
  27. }