FrmPreselection.cs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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.Dresses.DressManagement
  11. {
  12. public partial class FrmPreselection : LYFZ.ComponentLibrary.BaseContentsFormMain
  13. {
  14. public FrmPreselection()
  15. {
  16. InitializeComponent();
  17. panelEx2.BorderStyle = BorderStyle.FixedSingle;
  18. panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
  19. panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
  20. this.btnPreselection.Click += btnAdd_Click;
  21. this.txtCus_Telephone.KeyPress += txtCus_Telephone_KeyPress;
  22. this.dgv.RefreshTheme();
  23. this.dgv2.RefreshTheme();
  24. this.Shown += FrmPreselection_Shown;
  25. this.btnPreselection.Click += btnPreselection_Click;
  26. this.dgv.Click += dgv_Click;
  27. this.btnCusSelect.Click += btnCusSelect_Click;
  28. this.btnClose.Click += btnClose_Click;
  29. this.dgv2.Click += dgv2_Click;
  30. this.btnSlect.Click += btnSlect_Click;
  31. this.btnDelete.Click += btnDelete_Click;
  32. this.btnChoose.Click += btnChoose_Click;
  33. }
  34. protected virtual void btnChoose_Click(object sender, EventArgs e)
  35. {
  36. //throw new NotImplementedException();
  37. }
  38. protected virtual void btnclear_Click(object sender, EventArgs e)
  39. {
  40. //throw new NotImplementedException();
  41. }
  42. protected virtual void btnDelete_Click(object sender, EventArgs e)
  43. {
  44. //throw new NotImplementedException();
  45. }
  46. protected virtual void btnSlect_Click(object sender, EventArgs e)
  47. {
  48. //throw new NotImplementedException();
  49. }
  50. protected virtual void dgv2_Click(object sender, EventArgs e)
  51. {
  52. //throw new NotImplementedException();
  53. }
  54. protected virtual void btnDeleteL_Click(object sender, EventArgs e)
  55. {
  56. //throw new NotImplementedException();
  57. }
  58. protected virtual void btnPreselected_Click(object sender, EventArgs e)
  59. {
  60. //throw new NotImplementedException();
  61. }
  62. protected virtual void btnClear_Click(object sender, EventArgs e)
  63. {
  64. //throw new NotImplementedException();
  65. }
  66. protected virtual void btnClose_Click(object sender, EventArgs e)
  67. {
  68. //throw new NotImplementedException();
  69. }
  70. protected virtual void btnCusSelect_Click(object sender, EventArgs e)
  71. {
  72. //throw new NotImplementedException();
  73. }
  74. protected virtual void dgv_Click(object sender, EventArgs e)
  75. {
  76. //throw new NotImplementedException();
  77. }
  78. protected virtual void btnPreselection_Click(object sender, EventArgs e)
  79. {
  80. //throw new NotImplementedException();
  81. }
  82. protected virtual void radValet_Click(object sender, EventArgs e)
  83. {
  84. //throw new NotImplementedException();
  85. }
  86. protected virtual void radSell_Click(object sender, EventArgs e)
  87. {
  88. //throw new NotImplementedException();
  89. }
  90. protected virtual void radRent_Click(object sender, EventArgs e)
  91. {
  92. //throw new NotImplementedException();
  93. }
  94. protected virtual void radPreselection_Click(object sender, EventArgs e)
  95. {
  96. //throw new NotImplementedException();
  97. }
  98. protected virtual void FrmPreselection_Shown(object sender, EventArgs e)
  99. {
  100. //throw new NotImplementedException();
  101. }
  102. protected virtual void txtDsro_ReservationBackTime_Leave(object sender, EventArgs e)
  103. {
  104. //throw new NotImplementedException();
  105. }
  106. protected virtual void txtDsro_ReservationBackTime_Enter(object sender, EventArgs e)
  107. {
  108. //throw new NotImplementedException();
  109. }
  110. protected virtual void txtDsro_TakeDressTime_Leave(object sender, EventArgs e)
  111. {
  112. //throw new NotImplementedException();
  113. }
  114. protected virtual void txtDsro_TakeDressTime_Enter(object sender, EventArgs e)
  115. {
  116. //throw new NotImplementedException();
  117. }
  118. protected virtual void txtCus_Telephone_KeyPress(object sender, KeyPressEventArgs e)
  119. {
  120. //throw new NotImplementedException();
  121. }
  122. protected virtual void txtDsro_MortgageAmount_KeyPress(object sender, KeyPressEventArgs e)
  123. {
  124. //throw new NotImplementedException();
  125. }
  126. protected virtual void txtDsro_Amount_KeyPress(object sender, KeyPressEventArgs e)
  127. {
  128. //throw new NotImplementedException();
  129. }
  130. protected virtual void btnAdd_Click(object sender, EventArgs e)
  131. {
  132. //throw new NotImplementedException();
  133. }
  134. }
  135. }