IntentionsEntered.Designer.cs 147 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541
  1. namespace LYFZ.Software.UI.HospitalTrackingSystem
  2. {
  3. partial class IntentionsEntered
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(IntentionsEntered));
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  32. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  33. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
  34. this.panelEx1 = new LYFZ.ComponentLibrary.PanelEx();
  35. this.panelEx2999 = new LYFZ.ComponentLibrary.PanelEx();
  36. this.panelEx7 = new LYFZ.ComponentLibrary.PanelEx();
  37. this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
  38. this.btnDelete = new LYFZ.ComponentLibrary.ButtonEx();
  39. this.btnUpdate = new LYFZ.ComponentLibrary.ButtonEx();
  40. this.btnAddingSingle = new LYFZ.ComponentLibrary.ButtonEx();
  41. this.btnAdding = new LYFZ.ComponentLibrary.ButtonEx();
  42. this.btnPhotoExport = new LYFZ.ComponentLibrary.ButtonEx();
  43. this.btnPhotoImport = new LYFZ.ComponentLibrary.ButtonEx();
  44. this.btnAllPickup = new LYFZ.ComponentLibrary.ButtonEx();
  45. this.btnAllCompleted = new LYFZ.ComponentLibrary.ButtonEx();
  46. this.btnAllSendOut = new LYFZ.ComponentLibrary.ButtonEx();
  47. this.btnProductToolbox = new LYFZ.ComponentLibrary.ButtonEx();
  48. this.tabControlEx1 = new LYFZ.ComponentLibrary.TabControlEx();
  49. this.tabPage1 = new System.Windows.Forms.TabPage();
  50. this.dgvTrackRecord = new LYFZ.ComponentLibrary.DataGridViewEc();
  51. this.tabPage2 = new System.Windows.Forms.TabPage();
  52. this.dgvData = new LYFZ.ComponentLibrary.DataGridViewEc();
  53. this.tabPage3 = new System.Windows.Forms.TabPage();
  54. this.txtText = new LYFZ.ComponentLibrary.TextBoxEx();
  55. this.cmbtreevText = new LYFZ.ComponentLibrary.ComboBoxTreeViewEx();
  56. this.listViewData_Product = new LYFZ.ComponentLibrary.ListViewEx();
  57. this.tabPage4 = new System.Windows.Forms.TabPage();
  58. this.listViewData_Photo = new LYFZ.ComponentLibrary.ListViewEx();
  59. this.panelEx6 = new LYFZ.ComponentLibrary.PanelEx();
  60. this.lblPrompt = new LYFZ.ComponentLibrary.LabelEx();
  61. this.panelEx4 = new LYFZ.ComponentLibrary.PanelEx();
  62. this.labelEx14 = new LYFZ.ComponentLibrary.LabelEx();
  63. this.txtPregnantday = new LYFZ.ComponentLibrary.TextBoxEx();
  64. this.labelEx8 = new LYFZ.ComponentLibrary.LabelEx();
  65. this.labelEx9 = new LYFZ.ComponentLibrary.LabelEx();
  66. this.dateExpectedDate = new LYFZ.ComponentLibrary.DateTimePickerEx();
  67. this.labelEx32 = new LYFZ.ComponentLibrary.LabelEx();
  68. this.labelEx5 = new LYFZ.ComponentLibrary.LabelEx();
  69. this.labelEx1 = new LYFZ.ComponentLibrary.LabelEx();
  70. this.txtHusbandMobile = new LYFZ.ComponentLibrary.MaskedTextBoxEx(this.components);
  71. this.txtCus_Telephone = new LYFZ.ComponentLibrary.MaskedTextBoxEx(this.components);
  72. this.txtName = new LYFZ.ComponentLibrary.TextBoxEx();
  73. this.datasingletime = new LYFZ.ComponentLibrary.DateTimePickerEx();
  74. this.labelEx55 = new LYFZ.ComponentLibrary.LabelEx();
  75. this.labelEx49 = new LYFZ.ComponentLibrary.LabelEx();
  76. this.labelEx30 = new LYFZ.ComponentLibrary.LabelEx();
  77. this.txtHome = new LYFZ.ComponentLibrary.TextBoxEx();
  78. this.txtHusband = new LYFZ.ComponentLibrary.TextBoxEx();
  79. this.txtParents = new LYFZ.ComponentLibrary.TextBoxEx();
  80. this.txtRemark = new LYFZ.ComponentLibrary.TextBoxEx();
  81. this.bntReset = new LYFZ.ComponentLibrary.ButtonEx();
  82. this.labelEx54 = new LYFZ.ComponentLibrary.LabelEx();
  83. this.btnQQCall = new LYFZ.ComponentLibrary.ButtonQQ();
  84. this.txtQQ = new LYFZ.ComponentLibrary.TextBoxEx();
  85. this.labelEx51 = new LYFZ.ComponentLibrary.LabelEx();
  86. this.buttonTel1 = new LYFZ.ComponentLibrary.ButtonTel();
  87. this.labelEx50 = new LYFZ.ComponentLibrary.LabelEx();
  88. this.labelEx47 = new LYFZ.ComponentLibrary.LabelEx();
  89. this.btnDial = new LYFZ.ComponentLibrary.ButtonTel();
  90. this.labelEx29 = new LYFZ.ComponentLibrary.LabelEx();
  91. this.panelEx3 = new LYFZ.ComponentLibrary.PanelEx();
  92. this.dateBabyBirthday = new LYFZ.ComponentLibrary.MaskedTextDateEx(this.components);
  93. this.labelEx31 = new LYFZ.ComponentLibrary.LabelEx();
  94. this.labelEx42 = new LYFZ.ComponentLibrary.LabelEx();
  95. this.cbxFeeding = new LYFZ.ComponentLibrary.ComboBoxTreeViewEx();
  96. this.chkLunar = new LYFZ.ComponentLibrary.CheckBoxEx();
  97. this.radioButtonEx2 = new LYFZ.ComponentLibrary.RadioButtonEx();
  98. this.radioButtonEx1 = new LYFZ.ComponentLibrary.RadioButtonEx();
  99. this.txtBabyName = new LYFZ.ComponentLibrary.TextBoxEx();
  100. this.labelEx2 = new LYFZ.ComponentLibrary.LabelEx();
  101. this.labelEx3 = new LYFZ.ComponentLibrary.LabelEx();
  102. this.buttonForm5 = new LYFZ.ComponentLibrary.ButtonForm();
  103. this.labelEx4 = new LYFZ.ComponentLibrary.LabelEx();
  104. this.cbxBabyProfile = new LYFZ.ComponentLibrary.CheckBoxEx();
  105. this.cbxPregnant = new LYFZ.ComponentLibrary.CheckBoxEx();
  106. this.labelEx35 = new LYFZ.ComponentLibrary.LabelEx();
  107. this.labelEx34 = new LYFZ.ComponentLibrary.LabelEx();
  108. this.txtParentsZip = new LYFZ.ComponentLibrary.TextBoxEx();
  109. this.txtHusbandZip = new LYFZ.ComponentLibrary.TextBoxEx();
  110. this.txtHomeZip = new LYFZ.ComponentLibrary.TextBoxEx();
  111. this.labelEx18 = new LYFZ.ComponentLibrary.LabelEx();
  112. this.labelEx19 = new LYFZ.ComponentLibrary.LabelEx();
  113. this.labelEx20 = new LYFZ.ComponentLibrary.LabelEx();
  114. this.labelEx21 = new LYFZ.ComponentLibrary.LabelEx();
  115. this.labelEx22 = new LYFZ.ComponentLibrary.LabelEx();
  116. this.labelEx23 = new LYFZ.ComponentLibrary.LabelEx();
  117. this.txtMaidenCalls = new LYFZ.ComponentLibrary.TextBoxEx();
  118. this.txtFamilyPhone = new LYFZ.ComponentLibrary.TextBoxEx();
  119. this.labelEx17 = new LYFZ.ComponentLibrary.LabelEx();
  120. this.txtHomePhone = new LYFZ.ComponentLibrary.TextBoxEx();
  121. this.labelEx16 = new LYFZ.ComponentLibrary.LabelEx();
  122. this.labelEx15 = new LYFZ.ComponentLibrary.LabelEx();
  123. this.btnSavedData = new LYFZ.ComponentLibrary.ButtonEx();
  124. this.btnclose = new LYFZ.ComponentLibrary.ButtonEx();
  125. this.labelEx12 = new LYFZ.ComponentLibrary.LabelEx();
  126. this.panelLostRemark = new LYFZ.ComponentLibrary.PanelEx();
  127. this.txtLostRemark = new LYFZ.ComponentLibrary.TextBoxEx();
  128. this.labelEx13 = new LYFZ.ComponentLibrary.LabelEx();
  129. this.panelEx8 = new LYFZ.ComponentLibrary.PanelEx();
  130. this.panelEx2 = new LYFZ.ComponentLibrary.PanelEx();
  131. this.txtsingle = new LYFZ.ComponentLibrary.TextBoxEx();
  132. this.labelEx6 = new LYFZ.ComponentLibrary.LabelEx();
  133. this.cbxArea = new LYFZ.ComponentLibrary.ComboBoxTreeViewEx();
  134. this.cbxRetail = new LYFZ.ComponentLibrary.ComboBoxTreeViewEx();
  135. this.comboBoxTreeViewEx9 = new LYFZ.ComponentLibrary.ComboBoxTreeViewEx();
  136. this.cmbtreevBusinessIntent = new LYFZ.ComponentLibrary.ComboBoxTreeViewEx();
  137. this.cbxHospital = new LYFZ.ComponentLibrary.ComboBoxTreeViewEx();
  138. this.cbxCustomerGroups = new LYFZ.ComponentLibrary.ComboBoxTreeViewEx();
  139. this.labelEx25 = new LYFZ.ComponentLibrary.LabelEx();
  140. this.labelEx26 = new LYFZ.ComponentLibrary.LabelEx();
  141. this.labelEx10 = new LYFZ.ComponentLibrary.LabelEx();
  142. this.labelEx7 = new LYFZ.ComponentLibrary.LabelEx();
  143. this.labelEx24 = new LYFZ.ComponentLibrary.LabelEx();
  144. this.labelEx11 = new LYFZ.ComponentLibrary.LabelEx();
  145. this.panelEx5 = new LYFZ.ComponentLibrary.PanelEx();
  146. this.cmbtreevLostStatus = new LYFZ.ComponentLibrary.ComboBoxTreeViewEx();
  147. this.labelEx53 = new LYFZ.ComponentLibrary.LabelEx();
  148. this.labelEx28 = new LYFZ.ComponentLibrary.LabelEx();
  149. this.labelEx27 = new LYFZ.ComponentLibrary.LabelEx();
  150. this.labelEx45 = new LYFZ.ComponentLibrary.LabelEx();
  151. this.labelEx44 = new LYFZ.ComponentLibrary.LabelEx();
  152. this.labelEx43 = new LYFZ.ComponentLibrary.LabelEx();
  153. this.labelEx41 = new LYFZ.ComponentLibrary.LabelEx();
  154. this.labelEx33 = new LYFZ.ComponentLibrary.LabelEx();
  155. this.buttonForm4 = new LYFZ.ComponentLibrary.ButtonForm();
  156. this.buttonForm2 = new LYFZ.ComponentLibrary.ButtonForm();
  157. this.buttonForm3 = new LYFZ.ComponentLibrary.ButtonForm();
  158. this.buttonForm1 = new LYFZ.ComponentLibrary.ButtonForm();
  159. this.butnSet2 = new LYFZ.ComponentLibrary.ButtonForm();
  160. this.cbxMessage = new LYFZ.ComponentLibrary.CheckBoxEx();
  161. this.labelEx37 = new LYFZ.ComponentLibrary.LabelEx();
  162. this.txtHusbandName = new LYFZ.ComponentLibrary.TextBoxEx();
  163. this.plExMainContainer.SuspendLayout();
  164. this.plFormMainContent.SuspendLayout();
  165. this.panelEx1.SuspendLayout();
  166. this.panelEx2999.SuspendLayout();
  167. this.panelEx7.SuspendLayout();
  168. this.flowLayoutPanel1.SuspendLayout();
  169. this.tabControlEx1.SuspendLayout();
  170. this.tabPage1.SuspendLayout();
  171. ((System.ComponentModel.ISupportInitialize)(this.dgvTrackRecord)).BeginInit();
  172. this.tabPage2.SuspendLayout();
  173. ((System.ComponentModel.ISupportInitialize)(this.dgvData)).BeginInit();
  174. this.tabPage3.SuspendLayout();
  175. this.tabPage4.SuspendLayout();
  176. this.panelEx6.SuspendLayout();
  177. this.panelEx4.SuspendLayout();
  178. this.panelEx3.SuspendLayout();
  179. this.panelLostRemark.SuspendLayout();
  180. this.panelEx8.SuspendLayout();
  181. this.panelEx2.SuspendLayout();
  182. this.panelEx5.SuspendLayout();
  183. this.SuspendLayout();
  184. //
  185. // plExMainContainer
  186. //
  187. this.plExMainContainer.Controls.Add(this.panelEx1);
  188. this.plExMainContainer.Location = new System.Drawing.Point(0, 40);
  189. this.plExMainContainer.Margin = new System.Windows.Forms.Padding(0);
  190. this.plExMainContainer.Padding = new System.Windows.Forms.Padding(5);
  191. this.plExMainContainer.Size = new System.Drawing.Size(920, 545);
  192. //
  193. // plFormMainContent
  194. //
  195. this.plFormMainContent.Size = new System.Drawing.Size(920, 585);
  196. this.plFormMainContent.Controls.SetChildIndex(this.plExMainContainer, 0);
  197. //
  198. // btnAppFormMaximize
  199. //
  200. this.btnAppFormMaximize.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnAppFormMaximize.BackImg")));
  201. this.btnAppFormMaximize.Location = new System.Drawing.Point(861, 0);
  202. //
  203. // btnAppFormExit
  204. //
  205. this.btnAppFormExit.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnAppFormExit.BackImg")));
  206. this.btnAppFormExit.Location = new System.Drawing.Point(888, 0);
  207. //
  208. // btnAppFormMinimize
  209. //
  210. this.btnAppFormMinimize.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnAppFormMinimize.BackImg")));
  211. this.btnAppFormMinimize.Location = new System.Drawing.Point(834, 0);
  212. //
  213. // panelEx1
  214. //
  215. this.panelEx1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  216. this.panelEx1.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  217. this.panelEx1.BorderWidth = 1;
  218. this.panelEx1.Controls.Add(this.panelEx2999);
  219. this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill;
  220. this.panelEx1.Location = new System.Drawing.Point(5, 5);
  221. this.panelEx1.Margin = new System.Windows.Forms.Padding(5);
  222. this.panelEx1.Name = "panelEx1";
  223. this.panelEx1.Size = new System.Drawing.Size(910, 535);
  224. this.panelEx1.TabIndex = 17;
  225. //
  226. // panelEx2999
  227. //
  228. this.panelEx2999.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  229. this.panelEx2999.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  230. this.panelEx2999.BorderWidth = 1;
  231. this.panelEx2999.Controls.Add(this.panelEx7);
  232. this.panelEx2999.Controls.Add(this.panelEx6);
  233. this.panelEx2999.Controls.Add(this.panelLostRemark);
  234. this.panelEx2999.Controls.Add(this.panelEx8);
  235. this.panelEx2999.Dock = System.Windows.Forms.DockStyle.Left;
  236. this.panelEx2999.Location = new System.Drawing.Point(0, 0);
  237. this.panelEx2999.Name = "panelEx2999";
  238. this.panelEx2999.Size = new System.Drawing.Size(910, 535);
  239. this.panelEx2999.TabIndex = 0;
  240. //
  241. // panelEx7
  242. //
  243. this.panelEx7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  244. this.panelEx7.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  245. this.panelEx7.BorderWidth = 1;
  246. this.panelEx7.Controls.Add(this.flowLayoutPanel1);
  247. this.panelEx7.Controls.Add(this.tabControlEx1);
  248. this.panelEx7.Dock = System.Windows.Forms.DockStyle.Fill;
  249. this.panelEx7.Location = new System.Drawing.Point(0, 392);
  250. this.panelEx7.Name = "panelEx7";
  251. this.panelEx7.Padding = new System.Windows.Forms.Padding(3, 3, 5, 3);
  252. this.panelEx7.Size = new System.Drawing.Size(910, 143);
  253. this.panelEx7.TabIndex = 534;
  254. //
  255. // flowLayoutPanel1
  256. //
  257. this.flowLayoutPanel1.Controls.Add(this.btnDelete);
  258. this.flowLayoutPanel1.Controls.Add(this.btnUpdate);
  259. this.flowLayoutPanel1.Controls.Add(this.btnAddingSingle);
  260. this.flowLayoutPanel1.Controls.Add(this.btnAdding);
  261. this.flowLayoutPanel1.Controls.Add(this.btnPhotoExport);
  262. this.flowLayoutPanel1.Controls.Add(this.btnPhotoImport);
  263. this.flowLayoutPanel1.Controls.Add(this.btnAllPickup);
  264. this.flowLayoutPanel1.Controls.Add(this.btnAllCompleted);
  265. this.flowLayoutPanel1.Controls.Add(this.btnAllSendOut);
  266. this.flowLayoutPanel1.Controls.Add(this.btnProductToolbox);
  267. this.flowLayoutPanel1.Location = new System.Drawing.Point(390, 6);
  268. this.flowLayoutPanel1.Name = "flowLayoutPanel1";
  269. this.flowLayoutPanel1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
  270. this.flowLayoutPanel1.Size = new System.Drawing.Size(510, 31);
  271. this.flowLayoutPanel1.TabIndex = 401;
  272. //
  273. // btnDelete
  274. //
  275. this.btnDelete.BackColor = System.Drawing.Color.Transparent;
  276. this.btnDelete.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnDelete.BackImg")));
  277. this.btnDelete.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  278. this.btnDelete.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  279. this.btnDelete.ForeColor = System.Drawing.Color.White;
  280. this.btnDelete.IsCustomBackImg = false;
  281. this.btnDelete.IsShowText = true;
  282. this.btnDelete.Location = new System.Drawing.Point(432, 3);
  283. this.btnDelete.Name = "btnDelete";
  284. this.btnDelete.RightToLeft = System.Windows.Forms.RightToLeft.No;
  285. this.btnDelete.Size = new System.Drawing.Size(75, 25);
  286. this.btnDelete.TabIndex = 606;
  287. this.btnDelete.Text = " 删 除";
  288. this.btnDelete.UseVisualStyleBackColor = false;
  289. this.btnDelete.Visible = false;
  290. //
  291. // btnUpdate
  292. //
  293. this.btnUpdate.BackColor = System.Drawing.Color.Transparent;
  294. this.btnUpdate.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnUpdate.BackImg")));
  295. this.btnUpdate.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  296. this.btnUpdate.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  297. this.btnUpdate.ForeColor = System.Drawing.Color.White;
  298. this.btnUpdate.IsCustomBackImg = false;
  299. this.btnUpdate.IsShowText = true;
  300. this.btnUpdate.Location = new System.Drawing.Point(341, 3);
  301. this.btnUpdate.Name = "btnUpdate";
  302. this.btnUpdate.RightToLeft = System.Windows.Forms.RightToLeft.No;
  303. this.btnUpdate.Size = new System.Drawing.Size(85, 25);
  304. this.btnUpdate.TabIndex = 610;
  305. this.btnUpdate.Text = " 修改派单";
  306. this.btnUpdate.UseVisualStyleBackColor = false;
  307. this.btnUpdate.Visible = false;
  308. //
  309. // btnAddingSingle
  310. //
  311. this.btnAddingSingle.BackColor = System.Drawing.Color.Transparent;
  312. this.btnAddingSingle.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnAddingSingle.BackImg")));
  313. this.btnAddingSingle.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  314. this.btnAddingSingle.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  315. this.btnAddingSingle.ForeColor = System.Drawing.Color.White;
  316. this.btnAddingSingle.IsCustomBackImg = false;
  317. this.btnAddingSingle.IsShowText = true;
  318. this.btnAddingSingle.Location = new System.Drawing.Point(250, 3);
  319. this.btnAddingSingle.Name = "btnAddingSingle";
  320. this.btnAddingSingle.RightToLeft = System.Windows.Forms.RightToLeft.No;
  321. this.btnAddingSingle.Size = new System.Drawing.Size(85, 25);
  322. this.btnAddingSingle.TabIndex = 609;
  323. this.btnAddingSingle.Text = " 添加派单";
  324. this.btnAddingSingle.UseVisualStyleBackColor = false;
  325. this.btnAddingSingle.Visible = false;
  326. //
  327. // btnAdding
  328. //
  329. this.btnAdding.BackColor = System.Drawing.Color.Transparent;
  330. this.btnAdding.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnAdding.BackImg")));
  331. this.btnAdding.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  332. this.btnAdding.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  333. this.btnAdding.ForeColor = System.Drawing.Color.White;
  334. this.btnAdding.IsCustomBackImg = false;
  335. this.btnAdding.IsShowText = true;
  336. this.btnAdding.Location = new System.Drawing.Point(169, 3);
  337. this.btnAdding.Name = "btnAdding";
  338. this.btnAdding.RightToLeft = System.Windows.Forms.RightToLeft.No;
  339. this.btnAdding.Size = new System.Drawing.Size(75, 25);
  340. this.btnAdding.TabIndex = 608;
  341. this.btnAdding.Text = " 添加记录";
  342. this.btnAdding.UseVisualStyleBackColor = false;
  343. this.btnAdding.Visible = false;
  344. //
  345. // btnPhotoExport
  346. //
  347. this.btnPhotoExport.BackColor = System.Drawing.Color.Transparent;
  348. this.btnPhotoExport.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnPhotoExport.BackImg")));
  349. this.btnPhotoExport.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  350. this.btnPhotoExport.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  351. this.btnPhotoExport.ForeColor = System.Drawing.Color.White;
  352. this.btnPhotoExport.IsCustomBackImg = false;
  353. this.btnPhotoExport.IsShowText = true;
  354. this.btnPhotoExport.Location = new System.Drawing.Point(88, 3);
  355. this.btnPhotoExport.Name = "btnPhotoExport";
  356. this.btnPhotoExport.RightToLeft = System.Windows.Forms.RightToLeft.No;
  357. this.btnPhotoExport.Size = new System.Drawing.Size(75, 25);
  358. this.btnPhotoExport.TabIndex = 611;
  359. this.btnPhotoExport.Text = " 相片导出";
  360. this.btnPhotoExport.UseVisualStyleBackColor = false;
  361. this.btnPhotoExport.Visible = false;
  362. //
  363. // btnPhotoImport
  364. //
  365. this.btnPhotoImport.BackColor = System.Drawing.Color.Transparent;
  366. this.btnPhotoImport.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnPhotoImport.BackImg")));
  367. this.btnPhotoImport.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  368. this.btnPhotoImport.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  369. this.btnPhotoImport.ForeColor = System.Drawing.Color.White;
  370. this.btnPhotoImport.IsCustomBackImg = false;
  371. this.btnPhotoImport.IsShowText = true;
  372. this.btnPhotoImport.Location = new System.Drawing.Point(7, 3);
  373. this.btnPhotoImport.Name = "btnPhotoImport";
  374. this.btnPhotoImport.RightToLeft = System.Windows.Forms.RightToLeft.No;
  375. this.btnPhotoImport.Size = new System.Drawing.Size(75, 25);
  376. this.btnPhotoImport.TabIndex = 612;
  377. this.btnPhotoImport.Text = " 相片导入";
  378. this.btnPhotoImport.UseVisualStyleBackColor = false;
  379. this.btnPhotoImport.Visible = false;
  380. //
  381. // btnAllPickup
  382. //
  383. this.btnAllPickup.BackColor = System.Drawing.Color.Transparent;
  384. this.btnAllPickup.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnAllPickup.BackImg")));
  385. this.btnAllPickup.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  386. this.btnAllPickup.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  387. this.btnAllPickup.ForeColor = System.Drawing.Color.White;
  388. this.btnAllPickup.IsCustomBackImg = false;
  389. this.btnAllPickup.IsShowText = true;
  390. this.btnAllPickup.Location = new System.Drawing.Point(432, 34);
  391. this.btnAllPickup.Name = "btnAllPickup";
  392. this.btnAllPickup.RightToLeft = System.Windows.Forms.RightToLeft.No;
  393. this.btnAllPickup.Size = new System.Drawing.Size(75, 25);
  394. this.btnAllPickup.TabIndex = 613;
  395. this.btnAllPickup.Text = " 全部取走";
  396. this.btnAllPickup.UseVisualStyleBackColor = false;
  397. this.btnAllPickup.Visible = false;
  398. //
  399. // btnAllCompleted
  400. //
  401. this.btnAllCompleted.BackColor = System.Drawing.Color.Transparent;
  402. this.btnAllCompleted.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnAllCompleted.BackImg")));
  403. this.btnAllCompleted.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  404. this.btnAllCompleted.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  405. this.btnAllCompleted.ForeColor = System.Drawing.Color.White;
  406. this.btnAllCompleted.IsCustomBackImg = false;
  407. this.btnAllCompleted.IsShowText = true;
  408. this.btnAllCompleted.Location = new System.Drawing.Point(351, 34);
  409. this.btnAllCompleted.Name = "btnAllCompleted";
  410. this.btnAllCompleted.RightToLeft = System.Windows.Forms.RightToLeft.No;
  411. this.btnAllCompleted.Size = new System.Drawing.Size(75, 25);
  412. this.btnAllCompleted.TabIndex = 614;
  413. this.btnAllCompleted.Text = " 全部完成";
  414. this.btnAllCompleted.UseVisualStyleBackColor = false;
  415. this.btnAllCompleted.Visible = false;
  416. //
  417. // btnAllSendOut
  418. //
  419. this.btnAllSendOut.BackColor = System.Drawing.Color.Transparent;
  420. this.btnAllSendOut.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnAllSendOut.BackImg")));
  421. this.btnAllSendOut.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  422. this.btnAllSendOut.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  423. this.btnAllSendOut.ForeColor = System.Drawing.Color.White;
  424. this.btnAllSendOut.IsCustomBackImg = false;
  425. this.btnAllSendOut.IsShowText = true;
  426. this.btnAllSendOut.Location = new System.Drawing.Point(270, 34);
  427. this.btnAllSendOut.Name = "btnAllSendOut";
  428. this.btnAllSendOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
  429. this.btnAllSendOut.Size = new System.Drawing.Size(75, 25);
  430. this.btnAllSendOut.TabIndex = 615;
  431. this.btnAllSendOut.Text = " 全部发出";
  432. this.btnAllSendOut.UseVisualStyleBackColor = false;
  433. this.btnAllSendOut.Visible = false;
  434. //
  435. // btnProductToolbox
  436. //
  437. this.btnProductToolbox.BackColor = System.Drawing.Color.Transparent;
  438. this.btnProductToolbox.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnProductToolbox.BackImg")));
  439. this.btnProductToolbox.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  440. this.btnProductToolbox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  441. this.btnProductToolbox.ForeColor = System.Drawing.Color.White;
  442. this.btnProductToolbox.IsCustomBackImg = false;
  443. this.btnProductToolbox.IsShowText = true;
  444. this.btnProductToolbox.Location = new System.Drawing.Point(174, 34);
  445. this.btnProductToolbox.Name = "btnProductToolbox";
  446. this.btnProductToolbox.RightToLeft = System.Windows.Forms.RightToLeft.No;
  447. this.btnProductToolbox.Size = new System.Drawing.Size(90, 25);
  448. this.btnProductToolbox.TabIndex = 616;
  449. this.btnProductToolbox.Text = " 商品工具箱";
  450. this.btnProductToolbox.UseVisualStyleBackColor = false;
  451. this.btnProductToolbox.Visible = false;
  452. //
  453. // tabControlEx1
  454. //
  455. this.tabControlEx1.Appearance = System.Windows.Forms.TabAppearance.Buttons;
  456. this.tabControlEx1.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  457. this.tabControlEx1.Controls.Add(this.tabPage1);
  458. this.tabControlEx1.Controls.Add(this.tabPage2);
  459. this.tabControlEx1.Controls.Add(this.tabPage3);
  460. this.tabControlEx1.Controls.Add(this.tabPage4);
  461. this.tabControlEx1.Dock = System.Windows.Forms.DockStyle.Fill;
  462. this.tabControlEx1.ItemSize = new System.Drawing.Size(90, 30);
  463. this.tabControlEx1.Location = new System.Drawing.Point(3, 3);
  464. this.tabControlEx1.Name = "tabControlEx1";
  465. this.tabControlEx1.PageColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  466. this.tabControlEx1.SelectedIndex = 0;
  467. this.tabControlEx1.Size = new System.Drawing.Size(902, 137);
  468. this.tabControlEx1.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  469. this.tabControlEx1.TabIndex = 0;
  470. //
  471. // tabPage1
  472. //
  473. this.tabPage1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  474. this.tabPage1.Controls.Add(this.dgvTrackRecord);
  475. this.tabPage1.Location = new System.Drawing.Point(4, 34);
  476. this.tabPage1.Name = "tabPage1";
  477. this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
  478. this.tabPage1.Size = new System.Drawing.Size(894, 99);
  479. this.tabPage1.TabIndex = 0;
  480. this.tabPage1.Text = "跟踪记录";
  481. //
  482. // dgvTrackRecord
  483. //
  484. this.dgvTrackRecord.AllowUserToAddRows = false;
  485. this.dgvTrackRecord.AllowUserToDeleteRows = false;
  486. this.dgvTrackRecord.AllowUserToResizeRows = false;
  487. this.dgvTrackRecord.BackgroundColor = System.Drawing.Color.White;
  488. this.dgvTrackRecord.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  489. dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  490. dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(108)))), ((int)(((byte)(150)))));
  491. dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  492. dataGridViewCellStyle1.ForeColor = System.Drawing.Color.White;
  493. dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  494. dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  495. this.dgvTrackRecord.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
  496. this.dgvTrackRecord.ColumnHeadersHeight = 24;
  497. this.dgvTrackRecord.dgvColumnHeadersHeight = 24;
  498. this.dgvTrackRecord.dgvCurrentColumnOriginalSet = "";
  499. this.dgvTrackRecord.dgvCurrentColumnWidth = "";
  500. this.dgvTrackRecord.dgvCurrentHideColumn = null;
  501. this.dgvTrackRecord.dgvFixedHideColumn = null;
  502. this.dgvTrackRecord.dgvGuidName = null;
  503. this.dgvTrackRecord.dgvUserEmployeeID = null;
  504. this.dgvTrackRecord.Dock = System.Windows.Forms.DockStyle.Fill;
  505. this.dgvTrackRecord.EnableHeadersVisualStyles = false;
  506. this.dgvTrackRecord.GridColor = System.Drawing.SystemColors.GradientInactiveCaption;
  507. this.dgvTrackRecord.ImageHeight = 15;
  508. this.dgvTrackRecord.ImageWidth = 15;
  509. this.dgvTrackRecord.ImgCollapse = ((System.Drawing.Image)(resources.GetObject("dgvTrackRecord.ImgCollapse")));
  510. this.dgvTrackRecord.ImgExpand = ((System.Drawing.Image)(resources.GetObject("dgvTrackRecord.ImgExpand")));
  511. this.dgvTrackRecord.IsAutomaticDrawSingleOrDoubleRow = false;
  512. this.dgvTrackRecord.IsCompleteBonding = false;
  513. this.dgvTrackRecord.IsCopyCellValue = true;
  514. this.dgvTrackRecord.IsShowSerialNumber = false;
  515. this.dgvTrackRecord.IsSortedRedraw = true;
  516. this.dgvTrackRecord.IsSortMode = false;
  517. this.dgvTrackRecord.Location = new System.Drawing.Point(3, 3);
  518. this.dgvTrackRecord.Name = "dgvTrackRecord";
  519. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  520. dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
  521. dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  522. dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
  523. dataGridViewCellStyle2.Padding = new System.Windows.Forms.Padding(41);
  524. dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  525. dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  526. dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  527. this.dgvTrackRecord.RowHeadersDefaultCellStyle = dataGridViewCellStyle2;
  528. this.dgvTrackRecord.RowHeadersWidth = 25;
  529. this.dgvTrackRecord.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  530. this.dgvTrackRecord.RowTemplate.Height = 23;
  531. this.dgvTrackRecord.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  532. this.dgvTrackRecord.Size = new System.Drawing.Size(888, 93);
  533. this.dgvTrackRecord.StrSecondStageNull = "";
  534. this.dgvTrackRecord.StrValueNullColumn = "";
  535. this.dgvTrackRecord.TabIndex = 31;
  536. this.dgvTrackRecord.ViceCount = 1;
  537. //
  538. // tabPage2
  539. //
  540. this.tabPage2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  541. this.tabPage2.Controls.Add(this.dgvData);
  542. this.tabPage2.Location = new System.Drawing.Point(4, 34);
  543. this.tabPage2.Name = "tabPage2";
  544. this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
  545. this.tabPage2.Size = new System.Drawing.Size(894, 132);
  546. this.tabPage2.TabIndex = 1;
  547. this.tabPage2.Text = "派单上门";
  548. //
  549. // dgvData
  550. //
  551. this.dgvData.AllowUserToAddRows = false;
  552. this.dgvData.AllowUserToDeleteRows = false;
  553. this.dgvData.AllowUserToResizeRows = false;
  554. this.dgvData.BackgroundColor = System.Drawing.Color.White;
  555. this.dgvData.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  556. dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  557. dataGridViewCellStyle3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(108)))), ((int)(((byte)(150)))));
  558. dataGridViewCellStyle3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  559. dataGridViewCellStyle3.ForeColor = System.Drawing.Color.White;
  560. dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  561. dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  562. this.dgvData.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle3;
  563. this.dgvData.ColumnHeadersHeight = 24;
  564. this.dgvData.dgvColumnHeadersHeight = 24;
  565. this.dgvData.dgvCurrentColumnOriginalSet = "";
  566. this.dgvData.dgvCurrentColumnWidth = "";
  567. this.dgvData.dgvCurrentHideColumn = null;
  568. this.dgvData.dgvFixedHideColumn = null;
  569. this.dgvData.dgvGuidName = null;
  570. this.dgvData.dgvUserEmployeeID = null;
  571. this.dgvData.Dock = System.Windows.Forms.DockStyle.Fill;
  572. this.dgvData.EnableHeadersVisualStyles = false;
  573. this.dgvData.GridColor = System.Drawing.SystemColors.GradientInactiveCaption;
  574. this.dgvData.ImageHeight = 15;
  575. this.dgvData.ImageWidth = 15;
  576. this.dgvData.ImgCollapse = ((System.Drawing.Image)(resources.GetObject("dgvData.ImgCollapse")));
  577. this.dgvData.ImgExpand = ((System.Drawing.Image)(resources.GetObject("dgvData.ImgExpand")));
  578. this.dgvData.IsAutomaticDrawSingleOrDoubleRow = false;
  579. this.dgvData.IsCompleteBonding = false;
  580. this.dgvData.IsCopyCellValue = true;
  581. this.dgvData.IsShowSerialNumber = false;
  582. this.dgvData.IsSortedRedraw = true;
  583. this.dgvData.IsSortMode = false;
  584. this.dgvData.Location = new System.Drawing.Point(3, 3);
  585. this.dgvData.Name = "dgvData";
  586. dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  587. dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Control;
  588. dataGridViewCellStyle4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  589. dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.WindowText;
  590. dataGridViewCellStyle4.Padding = new System.Windows.Forms.Padding(41);
  591. dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  592. dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  593. dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  594. this.dgvData.RowHeadersDefaultCellStyle = dataGridViewCellStyle4;
  595. this.dgvData.RowHeadersWidth = 25;
  596. this.dgvData.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  597. this.dgvData.RowTemplate.Height = 23;
  598. this.dgvData.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  599. this.dgvData.Size = new System.Drawing.Size(888, 126);
  600. this.dgvData.StrSecondStageNull = "";
  601. this.dgvData.StrValueNullColumn = "";
  602. this.dgvData.TabIndex = 30;
  603. this.dgvData.ViceCount = 1;
  604. //
  605. // tabPage3
  606. //
  607. this.tabPage3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  608. this.tabPage3.Controls.Add(this.txtText);
  609. this.tabPage3.Controls.Add(this.cmbtreevText);
  610. this.tabPage3.Controls.Add(this.listViewData_Product);
  611. this.tabPage3.Location = new System.Drawing.Point(4, 34);
  612. this.tabPage3.Name = "tabPage3";
  613. this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
  614. this.tabPage3.Size = new System.Drawing.Size(894, 132);
  615. this.tabPage3.TabIndex = 3;
  616. this.tabPage3.Text = "产品管理";
  617. //
  618. // txtText
  619. //
  620. this.txtText.BackColor = System.Drawing.Color.Transparent;
  621. this.txtText.Font = new System.Drawing.Font("微软雅黑", 9F);
  622. this.txtText.Icon = null;
  623. this.txtText.IconIsButton = false;
  624. this.txtText.IsPasswordChat = '\0';
  625. this.txtText.IsSystemPasswordChar = false;
  626. this.txtText.Lines = new string[0];
  627. this.txtText.Location = new System.Drawing.Point(323, 44);
  628. this.txtText.Margin = new System.Windows.Forms.Padding(0);
  629. this.txtText.MaxLength = 32767;
  630. this.txtText.MinimumSize = new System.Drawing.Size(0, 26);
  631. this.txtText.MouseBack = null;
  632. this.txtText.Multiline = false;
  633. this.txtText.Name = "txtText";
  634. this.txtText.NormlBack = null;
  635. this.txtText.Padding = new System.Windows.Forms.Padding(5);
  636. this.txtText.ReadOnly = false;
  637. this.txtText.ScrollBars = System.Windows.Forms.ScrollBars.None;
  638. this.txtText.Size = new System.Drawing.Size(90, 26);
  639. this.txtText.TabIndex = 2294;
  640. this.txtText.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  641. this.txtText.Visible = false;
  642. this.txtText.WaterColor = System.Drawing.Color.DarkGray;
  643. this.txtText.WaterText = "";
  644. this.txtText.WordWrap = true;
  645. //
  646. // cmbtreevText
  647. //
  648. this.cmbtreevText.AfterSelectLevelFirstNode = true;
  649. this.cmbtreevText.DropDownHeight = 220;
  650. this.cmbtreevText.DropDownShow = false;
  651. this.cmbtreevText.FormattingEnabled = true;
  652. this.cmbtreevText.IntegralHeight = false;
  653. this.cmbtreevText.IsNodeMouseClick = true;
  654. this.cmbtreevText.IsSelectParentNode = false;
  655. this.cmbtreevText.Location = new System.Drawing.Point(183, 47);
  656. this.cmbtreevText.Name = "cmbtreevText";
  657. this.cmbtreevText.ReadOnly = true;
  658. this.cmbtreevText.SelectedNode = null;
  659. this.cmbtreevText.Size = new System.Drawing.Size(130, 20);
  660. this.cmbtreevText.StrGetName = "";
  661. this.cmbtreevText.StrGetTagName = "";
  662. this.cmbtreevText.StrKey = null;
  663. this.cmbtreevText.TabIndex = 2293;
  664. this.cmbtreevText.Visible = false;
  665. //
  666. // listViewData_Product
  667. //
  668. this.listViewData_Product.Dock = System.Windows.Forms.DockStyle.Fill;
  669. this.listViewData_Product.FullRowSelect = true;
  670. this.listViewData_Product.IsDefaultShowGroups = false;
  671. this.listViewData_Product.Location = new System.Drawing.Point(3, 3);
  672. this.listViewData_Product.Name = "listViewData_Product";
  673. this.listViewData_Product.Size = new System.Drawing.Size(888, 126);
  674. this.listViewData_Product.TabIndex = 2292;
  675. this.listViewData_Product.UseCompatibleStateImageBehavior = false;
  676. //
  677. // tabPage4
  678. //
  679. this.tabPage4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  680. this.tabPage4.Controls.Add(this.listViewData_Photo);
  681. this.tabPage4.Location = new System.Drawing.Point(4, 34);
  682. this.tabPage4.Name = "tabPage4";
  683. this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
  684. this.tabPage4.Size = new System.Drawing.Size(894, 132);
  685. this.tabPage4.TabIndex = 2;
  686. this.tabPage4.Text = "照片管理";
  687. //
  688. // listViewData_Photo
  689. //
  690. this.listViewData_Photo.Dock = System.Windows.Forms.DockStyle.Fill;
  691. this.listViewData_Photo.IsDefaultShowGroups = false;
  692. this.listViewData_Photo.Location = new System.Drawing.Point(3, 3);
  693. this.listViewData_Photo.Name = "listViewData_Photo";
  694. this.listViewData_Photo.Size = new System.Drawing.Size(888, 126);
  695. this.listViewData_Photo.TabIndex = 0;
  696. this.listViewData_Photo.UseCompatibleStateImageBehavior = false;
  697. //
  698. // panelEx6
  699. //
  700. this.panelEx6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  701. this.panelEx6.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  702. this.panelEx6.BorderWidth = 1;
  703. this.panelEx6.Controls.Add(this.lblPrompt);
  704. this.panelEx6.Controls.Add(this.panelEx4);
  705. this.panelEx6.Controls.Add(this.txtHusbandMobile);
  706. this.panelEx6.Controls.Add(this.txtCus_Telephone);
  707. this.panelEx6.Controls.Add(this.txtHusbandName);
  708. this.panelEx6.Controls.Add(this.txtName);
  709. this.panelEx6.Controls.Add(this.datasingletime);
  710. this.panelEx6.Controls.Add(this.labelEx55);
  711. this.panelEx6.Controls.Add(this.labelEx37);
  712. this.panelEx6.Controls.Add(this.labelEx49);
  713. this.panelEx6.Controls.Add(this.labelEx30);
  714. this.panelEx6.Controls.Add(this.txtHome);
  715. this.panelEx6.Controls.Add(this.txtHusband);
  716. this.panelEx6.Controls.Add(this.txtParents);
  717. this.panelEx6.Controls.Add(this.txtRemark);
  718. this.panelEx6.Controls.Add(this.bntReset);
  719. this.panelEx6.Controls.Add(this.labelEx54);
  720. this.panelEx6.Controls.Add(this.btnQQCall);
  721. this.panelEx6.Controls.Add(this.txtQQ);
  722. this.panelEx6.Controls.Add(this.labelEx51);
  723. this.panelEx6.Controls.Add(this.buttonTel1);
  724. this.panelEx6.Controls.Add(this.labelEx50);
  725. this.panelEx6.Controls.Add(this.labelEx47);
  726. this.panelEx6.Controls.Add(this.btnDial);
  727. this.panelEx6.Controls.Add(this.labelEx29);
  728. this.panelEx6.Controls.Add(this.panelEx3);
  729. this.panelEx6.Controls.Add(this.cbxBabyProfile);
  730. this.panelEx6.Controls.Add(this.cbxPregnant);
  731. this.panelEx6.Controls.Add(this.labelEx35);
  732. this.panelEx6.Controls.Add(this.labelEx34);
  733. this.panelEx6.Controls.Add(this.txtParentsZip);
  734. this.panelEx6.Controls.Add(this.txtHusbandZip);
  735. this.panelEx6.Controls.Add(this.txtHomeZip);
  736. this.panelEx6.Controls.Add(this.labelEx18);
  737. this.panelEx6.Controls.Add(this.labelEx19);
  738. this.panelEx6.Controls.Add(this.labelEx20);
  739. this.panelEx6.Controls.Add(this.labelEx21);
  740. this.panelEx6.Controls.Add(this.labelEx22);
  741. this.panelEx6.Controls.Add(this.labelEx23);
  742. this.panelEx6.Controls.Add(this.txtMaidenCalls);
  743. this.panelEx6.Controls.Add(this.txtFamilyPhone);
  744. this.panelEx6.Controls.Add(this.labelEx17);
  745. this.panelEx6.Controls.Add(this.txtHomePhone);
  746. this.panelEx6.Controls.Add(this.labelEx16);
  747. this.panelEx6.Controls.Add(this.labelEx15);
  748. this.panelEx6.Controls.Add(this.btnSavedData);
  749. this.panelEx6.Controls.Add(this.btnclose);
  750. this.panelEx6.Controls.Add(this.labelEx12);
  751. this.panelEx6.Dock = System.Windows.Forms.DockStyle.Top;
  752. this.panelEx6.Location = new System.Drawing.Point(0, 112);
  753. this.panelEx6.Name = "panelEx6";
  754. this.panelEx6.Size = new System.Drawing.Size(910, 280);
  755. this.panelEx6.TabIndex = 533;
  756. //
  757. // lblPrompt
  758. //
  759. this.lblPrompt.AutoSize = true;
  760. this.lblPrompt.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  761. this.lblPrompt.ForeColor = System.Drawing.Color.Red;
  762. this.lblPrompt.Location = new System.Drawing.Point(81, 257);
  763. this.lblPrompt.Name = "lblPrompt";
  764. this.lblPrompt.Size = new System.Drawing.Size(68, 17);
  765. this.lblPrompt.TabIndex = 607;
  766. this.lblPrompt.Text = "温馨提示:";
  767. //
  768. // panelEx4
  769. //
  770. this.panelEx4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  771. this.panelEx4.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  772. this.panelEx4.BorderWidth = 1;
  773. this.panelEx4.Controls.Add(this.labelEx14);
  774. this.panelEx4.Controls.Add(this.txtPregnantday);
  775. this.panelEx4.Controls.Add(this.labelEx8);
  776. this.panelEx4.Controls.Add(this.labelEx9);
  777. this.panelEx4.Controls.Add(this.dateExpectedDate);
  778. this.panelEx4.Controls.Add(this.labelEx32);
  779. this.panelEx4.Controls.Add(this.labelEx5);
  780. this.panelEx4.Controls.Add(this.labelEx1);
  781. this.panelEx4.Location = new System.Drawing.Point(1, 120);
  782. this.panelEx4.Name = "panelEx4";
  783. this.panelEx4.Size = new System.Drawing.Size(717, 29);
  784. this.panelEx4.TabIndex = 586;
  785. this.panelEx4.Visible = false;
  786. //
  787. // labelEx14
  788. //
  789. this.labelEx14.AutoSize = true;
  790. this.labelEx14.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  791. this.labelEx14.ForeColor = System.Drawing.Color.Red;
  792. this.labelEx14.Location = new System.Drawing.Point(198, 7);
  793. this.labelEx14.Name = "labelEx14";
  794. this.labelEx14.Size = new System.Drawing.Size(66, 17);
  795. this.labelEx14.TabIndex = 532;
  796. this.labelEx14.Text = "(按40周算)";
  797. //
  798. // txtPregnantday
  799. //
  800. this.txtPregnantday.BackColor = System.Drawing.Color.Transparent;
  801. this.txtPregnantday.Font = new System.Drawing.Font("微软雅黑", 9F);
  802. this.txtPregnantday.Icon = null;
  803. this.txtPregnantday.IconIsButton = false;
  804. this.txtPregnantday.IsPasswordChat = '\0';
  805. this.txtPregnantday.IsSystemPasswordChar = false;
  806. this.txtPregnantday.Lines = new string[0];
  807. this.txtPregnantday.Location = new System.Drawing.Point(358, 2);
  808. this.txtPregnantday.Margin = new System.Windows.Forms.Padding(0);
  809. this.txtPregnantday.MaxLength = 32767;
  810. this.txtPregnantday.MinimumSize = new System.Drawing.Size(0, 26);
  811. this.txtPregnantday.MouseBack = null;
  812. this.txtPregnantday.Multiline = false;
  813. this.txtPregnantday.Name = "txtPregnantday";
  814. this.txtPregnantday.NormlBack = null;
  815. this.txtPregnantday.Padding = new System.Windows.Forms.Padding(5);
  816. this.txtPregnantday.ReadOnly = false;
  817. this.txtPregnantday.ScrollBars = System.Windows.Forms.ScrollBars.None;
  818. this.txtPregnantday.Size = new System.Drawing.Size(91, 26);
  819. this.txtPregnantday.TabIndex = 522;
  820. this.txtPregnantday.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  821. this.txtPregnantday.WaterColor = System.Drawing.Color.DarkGray;
  822. this.txtPregnantday.WaterText = "";
  823. this.txtPregnantday.WordWrap = true;
  824. //
  825. // labelEx8
  826. //
  827. this.labelEx8.AutoSize = true;
  828. this.labelEx8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  829. this.labelEx8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  830. this.labelEx8.Location = new System.Drawing.Point(293, 6);
  831. this.labelEx8.Name = "labelEx8";
  832. this.labelEx8.Size = new System.Drawing.Size(68, 17);
  833. this.labelEx8.TabIndex = 521;
  834. this.labelEx8.Text = "怀孕周数:";
  835. //
  836. // labelEx9
  837. //
  838. this.labelEx9.AutoSize = true;
  839. this.labelEx9.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  840. this.labelEx9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  841. this.labelEx9.Location = new System.Drawing.Point(285, 8);
  842. this.labelEx9.Name = "labelEx9";
  843. this.labelEx9.Size = new System.Drawing.Size(13, 17);
  844. this.labelEx9.TabIndex = 531;
  845. this.labelEx9.Text = "*";
  846. //
  847. // dateExpectedDate
  848. //
  849. this.dateExpectedDate.CustomFormat = " ";
  850. this.dateExpectedDate.DateValue = "";
  851. this.dateExpectedDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  852. this.dateExpectedDate.IsShowTime = false;
  853. this.dateExpectedDate.Location = new System.Drawing.Point(83, 4);
  854. this.dateExpectedDate.Name = "dateExpectedDate";
  855. this.dateExpectedDate.Size = new System.Drawing.Size(110, 21);
  856. this.dateExpectedDate.TabIndex = 512;
  857. //
  858. // labelEx32
  859. //
  860. this.labelEx32.AutoSize = true;
  861. this.labelEx32.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  862. this.labelEx32.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  863. this.labelEx32.Location = new System.Drawing.Point(29, 6);
  864. this.labelEx32.Name = "labelEx32";
  865. this.labelEx32.Size = new System.Drawing.Size(56, 17);
  866. this.labelEx32.TabIndex = 504;
  867. this.labelEx32.Text = "预产期:";
  868. //
  869. // labelEx5
  870. //
  871. this.labelEx5.AutoSize = true;
  872. this.labelEx5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  873. this.labelEx5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  874. this.labelEx5.Location = new System.Drawing.Point(449, 7);
  875. this.labelEx5.Name = "labelEx5";
  876. this.labelEx5.Size = new System.Drawing.Size(20, 17);
  877. this.labelEx5.TabIndex = 530;
  878. this.labelEx5.Text = "周";
  879. //
  880. // labelEx1
  881. //
  882. this.labelEx1.AutoSize = true;
  883. this.labelEx1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  884. this.labelEx1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  885. this.labelEx1.Location = new System.Drawing.Point(21, 8);
  886. this.labelEx1.Name = "labelEx1";
  887. this.labelEx1.Size = new System.Drawing.Size(13, 17);
  888. this.labelEx1.TabIndex = 529;
  889. this.labelEx1.Text = "*";
  890. //
  891. // txtHusbandMobile
  892. //
  893. this.txtHusbandMobile.Location = new System.Drawing.Point(283, 64);
  894. this.txtHusbandMobile.Mask = "000 0000 0000";
  895. this.txtHusbandMobile.Name = "txtHusbandMobile";
  896. this.txtHusbandMobile.PromptChar = ' ';
  897. this.txtHusbandMobile.Size = new System.Drawing.Size(90, 21);
  898. this.txtHusbandMobile.TabIndex = 597;
  899. //
  900. // txtCus_Telephone
  901. //
  902. this.txtCus_Telephone.Location = new System.Drawing.Point(283, 34);
  903. this.txtCus_Telephone.Mask = "000 0000 0000";
  904. this.txtCus_Telephone.Name = "txtCus_Telephone";
  905. this.txtCus_Telephone.PromptChar = ' ';
  906. this.txtCus_Telephone.Size = new System.Drawing.Size(90, 21);
  907. this.txtCus_Telephone.TabIndex = 593;
  908. //
  909. // txtName
  910. //
  911. this.txtName.BackColor = System.Drawing.Color.Transparent;
  912. this.txtName.Font = new System.Drawing.Font("微软雅黑", 9F);
  913. this.txtName.Icon = null;
  914. this.txtName.IconIsButton = false;
  915. this.txtName.IsPasswordChat = '\0';
  916. this.txtName.IsSystemPasswordChar = false;
  917. this.txtName.Lines = new string[0];
  918. this.txtName.Location = new System.Drawing.Point(83, 32);
  919. this.txtName.Margin = new System.Windows.Forms.Padding(0);
  920. this.txtName.MaxLength = 32767;
  921. this.txtName.MinimumSize = new System.Drawing.Size(0, 26);
  922. this.txtName.MouseBack = null;
  923. this.txtName.Multiline = false;
  924. this.txtName.Name = "txtName";
  925. this.txtName.NormlBack = null;
  926. this.txtName.Padding = new System.Windows.Forms.Padding(5);
  927. this.txtName.ReadOnly = false;
  928. this.txtName.ScrollBars = System.Windows.Forms.ScrollBars.None;
  929. this.txtName.Size = new System.Drawing.Size(110, 26);
  930. this.txtName.TabIndex = 589;
  931. this.txtName.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  932. this.txtName.WaterColor = System.Drawing.Color.DarkGray;
  933. this.txtName.WaterText = "";
  934. this.txtName.WordWrap = true;
  935. //
  936. // datasingletime
  937. //
  938. this.datasingletime.CustomFormat = "yyyy-MM-dd";
  939. this.datasingletime.DateValue = "2015-08-24";
  940. this.datasingletime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  941. this.datasingletime.IsShowTime = false;
  942. this.datasingletime.Location = new System.Drawing.Point(650, 34);
  943. this.datasingletime.Name = "datasingletime";
  944. this.datasingletime.Size = new System.Drawing.Size(90, 21);
  945. this.datasingletime.TabIndex = 602;
  946. this.datasingletime.Value = new System.DateTime(2015, 8, 24, 0, 0, 0, 0);
  947. //
  948. // labelEx55
  949. //
  950. this.labelEx55.AutoSize = true;
  951. this.labelEx55.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  952. this.labelEx55.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  953. this.labelEx55.Location = new System.Drawing.Point(585, 36);
  954. this.labelEx55.Name = "labelEx55";
  955. this.labelEx55.Size = new System.Drawing.Size(68, 17);
  956. this.labelEx55.TabIndex = 601;
  957. this.labelEx55.Text = "来单日期:";
  958. //
  959. // labelEx49
  960. //
  961. this.labelEx49.AutoSize = true;
  962. this.labelEx49.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  963. this.labelEx49.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  964. this.labelEx49.Location = new System.Drawing.Point(218, 36);
  965. this.labelEx49.Name = "labelEx49";
  966. this.labelEx49.Size = new System.Drawing.Size(68, 17);
  967. this.labelEx49.TabIndex = 591;
  968. this.labelEx49.Text = "本人手机:";
  969. //
  970. // labelEx30
  971. //
  972. this.labelEx30.AutoSize = true;
  973. this.labelEx30.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  974. this.labelEx30.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  975. this.labelEx30.Location = new System.Drawing.Point(18, 36);
  976. this.labelEx30.Name = "labelEx30";
  977. this.labelEx30.Size = new System.Drawing.Size(68, 17);
  978. this.labelEx30.TabIndex = 588;
  979. this.labelEx30.Text = "客户姓名:";
  980. //
  981. // txtHome
  982. //
  983. this.txtHome.BackColor = System.Drawing.Color.Transparent;
  984. this.txtHome.Font = new System.Drawing.Font("微软雅黑", 9F);
  985. this.txtHome.Icon = null;
  986. this.txtHome.IconIsButton = false;
  987. this.txtHome.IsPasswordChat = '\0';
  988. this.txtHome.IsSystemPasswordChar = false;
  989. this.txtHome.Lines = new string[0];
  990. this.txtHome.Location = new System.Drawing.Point(83, 141);
  991. this.txtHome.Margin = new System.Windows.Forms.Padding(0);
  992. this.txtHome.MaxLength = 32767;
  993. this.txtHome.MinimumSize = new System.Drawing.Size(0, 26);
  994. this.txtHome.MouseBack = null;
  995. this.txtHome.Multiline = false;
  996. this.txtHome.Name = "txtHome";
  997. this.txtHome.NormlBack = null;
  998. this.txtHome.Padding = new System.Windows.Forms.Padding(5);
  999. this.txtHome.ReadOnly = false;
  1000. this.txtHome.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1001. this.txtHome.Size = new System.Drawing.Size(380, 26);
  1002. this.txtHome.TabIndex = 558;
  1003. this.txtHome.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  1004. this.txtHome.WaterColor = System.Drawing.Color.DarkGray;
  1005. this.txtHome.WaterText = "";
  1006. this.txtHome.WordWrap = true;
  1007. //
  1008. // txtHusband
  1009. //
  1010. this.txtHusband.BackColor = System.Drawing.Color.Transparent;
  1011. this.txtHusband.Font = new System.Drawing.Font("微软雅黑", 9F);
  1012. this.txtHusband.Icon = null;
  1013. this.txtHusband.IconIsButton = false;
  1014. this.txtHusband.IsPasswordChat = '\0';
  1015. this.txtHusband.IsSystemPasswordChar = false;
  1016. this.txtHusband.Lines = new string[0];
  1017. this.txtHusband.Location = new System.Drawing.Point(83, 170);
  1018. this.txtHusband.Margin = new System.Windows.Forms.Padding(0);
  1019. this.txtHusband.MaxLength = 32767;
  1020. this.txtHusband.MinimumSize = new System.Drawing.Size(0, 26);
  1021. this.txtHusband.MouseBack = null;
  1022. this.txtHusband.Multiline = false;
  1023. this.txtHusband.Name = "txtHusband";
  1024. this.txtHusband.NormlBack = null;
  1025. this.txtHusband.Padding = new System.Windows.Forms.Padding(5);
  1026. this.txtHusband.ReadOnly = false;
  1027. this.txtHusband.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1028. this.txtHusband.Size = new System.Drawing.Size(380, 26);
  1029. this.txtHusband.TabIndex = 557;
  1030. this.txtHusband.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  1031. this.txtHusband.WaterColor = System.Drawing.Color.DarkGray;
  1032. this.txtHusband.WaterText = "";
  1033. this.txtHusband.WordWrap = true;
  1034. //
  1035. // txtParents
  1036. //
  1037. this.txtParents.BackColor = System.Drawing.Color.Transparent;
  1038. this.txtParents.Font = new System.Drawing.Font("微软雅黑", 9F);
  1039. this.txtParents.Icon = null;
  1040. this.txtParents.IconIsButton = false;
  1041. this.txtParents.IsPasswordChat = '\0';
  1042. this.txtParents.IsSystemPasswordChar = false;
  1043. this.txtParents.Lines = new string[0];
  1044. this.txtParents.Location = new System.Drawing.Point(83, 200);
  1045. this.txtParents.Margin = new System.Windows.Forms.Padding(0);
  1046. this.txtParents.MaxLength = 32767;
  1047. this.txtParents.MinimumSize = new System.Drawing.Size(0, 26);
  1048. this.txtParents.MouseBack = null;
  1049. this.txtParents.Multiline = false;
  1050. this.txtParents.Name = "txtParents";
  1051. this.txtParents.NormlBack = null;
  1052. this.txtParents.Padding = new System.Windows.Forms.Padding(5);
  1053. this.txtParents.ReadOnly = false;
  1054. this.txtParents.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1055. this.txtParents.Size = new System.Drawing.Size(380, 26);
  1056. this.txtParents.TabIndex = 556;
  1057. this.txtParents.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  1058. this.txtParents.WaterColor = System.Drawing.Color.DarkGray;
  1059. this.txtParents.WaterText = "";
  1060. this.txtParents.WordWrap = true;
  1061. //
  1062. // txtRemark
  1063. //
  1064. this.txtRemark.BackColor = System.Drawing.Color.Transparent;
  1065. this.txtRemark.Font = new System.Drawing.Font("微软雅黑", 9F);
  1066. this.txtRemark.Icon = null;
  1067. this.txtRemark.IconIsButton = false;
  1068. this.txtRemark.IsPasswordChat = '\0';
  1069. this.txtRemark.IsSystemPasswordChar = false;
  1070. this.txtRemark.Lines = new string[0];
  1071. this.txtRemark.Location = new System.Drawing.Point(83, 230);
  1072. this.txtRemark.Margin = new System.Windows.Forms.Padding(0);
  1073. this.txtRemark.MaxLength = 32767;
  1074. this.txtRemark.MinimumSize = new System.Drawing.Size(0, 26);
  1075. this.txtRemark.MouseBack = null;
  1076. this.txtRemark.Multiline = false;
  1077. this.txtRemark.Name = "txtRemark";
  1078. this.txtRemark.NormlBack = null;
  1079. this.txtRemark.Padding = new System.Windows.Forms.Padding(5);
  1080. this.txtRemark.ReadOnly = false;
  1081. this.txtRemark.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1082. this.txtRemark.Size = new System.Drawing.Size(701, 26);
  1083. this.txtRemark.TabIndex = 541;
  1084. this.txtRemark.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  1085. this.txtRemark.WaterColor = System.Drawing.Color.DarkGray;
  1086. this.txtRemark.WaterText = "";
  1087. this.txtRemark.WordWrap = true;
  1088. //
  1089. // bntReset
  1090. //
  1091. this.bntReset.BackColor = System.Drawing.Color.Transparent;
  1092. this.bntReset.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("bntReset.BackImg")));
  1093. this.bntReset.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  1094. this.bntReset.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  1095. this.bntReset.ForeColor = System.Drawing.Color.White;
  1096. this.bntReset.IsCustomBackImg = false;
  1097. this.bntReset.IsShowText = true;
  1098. this.bntReset.Location = new System.Drawing.Point(812, 177);
  1099. this.bntReset.Name = "bntReset";
  1100. this.bntReset.Size = new System.Drawing.Size(85, 35);
  1101. this.bntReset.TabIndex = 606;
  1102. this.bntReset.Text = " 新订单";
  1103. this.bntReset.UseVisualStyleBackColor = false;
  1104. //
  1105. // labelEx54
  1106. //
  1107. this.labelEx54.AutoSize = true;
  1108. this.labelEx54.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1109. this.labelEx54.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  1110. this.labelEx54.Location = new System.Drawing.Point(577, 39);
  1111. this.labelEx54.Name = "labelEx54";
  1112. this.labelEx54.Size = new System.Drawing.Size(13, 17);
  1113. this.labelEx54.TabIndex = 603;
  1114. this.labelEx54.Text = "*";
  1115. //
  1116. // btnQQCall
  1117. //
  1118. this.btnQQCall.BackColor = System.Drawing.Color.Transparent;
  1119. this.btnQQCall.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnQQCall.BackImg")));
  1120. this.btnQQCall.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 27, 22);
  1121. this.btnQQCall.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  1122. this.btnQQCall.ForeColor = System.Drawing.Color.White;
  1123. this.btnQQCall.IsCustomBackImg = false;
  1124. this.btnQQCall.IsShowText = false;
  1125. this.btnQQCall.Location = new System.Drawing.Point(914, 111);
  1126. this.btnQQCall.Name = "btnQQCall";
  1127. this.btnQQCall.Size = new System.Drawing.Size(27, 22);
  1128. this.btnQQCall.TabIndex = 600;
  1129. this.btnQQCall.Text = "buttonQQ2";
  1130. this.btnQQCall.UseVisualStyleBackColor = false;
  1131. //
  1132. // txtQQ
  1133. //
  1134. this.txtQQ.BackColor = System.Drawing.Color.Transparent;
  1135. this.txtQQ.Font = new System.Drawing.Font("微软雅黑", 9F);
  1136. this.txtQQ.Icon = null;
  1137. this.txtQQ.IconIsButton = false;
  1138. this.txtQQ.IsPasswordChat = '\0';
  1139. this.txtQQ.IsSystemPasswordChar = false;
  1140. this.txtQQ.Lines = new string[0];
  1141. this.txtQQ.Location = new System.Drawing.Point(464, 32);
  1142. this.txtQQ.Margin = new System.Windows.Forms.Padding(0);
  1143. this.txtQQ.MaxLength = 12;
  1144. this.txtQQ.MinimumSize = new System.Drawing.Size(0, 26);
  1145. this.txtQQ.MouseBack = null;
  1146. this.txtQQ.Multiline = false;
  1147. this.txtQQ.Name = "txtQQ";
  1148. this.txtQQ.NormlBack = null;
  1149. this.txtQQ.Padding = new System.Windows.Forms.Padding(5);
  1150. this.txtQQ.ReadOnly = false;
  1151. this.txtQQ.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1152. this.txtQQ.Size = new System.Drawing.Size(91, 26);
  1153. this.txtQQ.TabIndex = 599;
  1154. this.txtQQ.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  1155. this.txtQQ.WaterColor = System.Drawing.Color.DarkGray;
  1156. this.txtQQ.WaterText = "";
  1157. this.txtQQ.WordWrap = true;
  1158. //
  1159. // labelEx51
  1160. //
  1161. this.labelEx51.AutoSize = true;
  1162. this.labelEx51.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1163. this.labelEx51.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1164. this.labelEx51.Location = new System.Drawing.Point(428, 36);
  1165. this.labelEx51.Name = "labelEx51";
  1166. this.labelEx51.Size = new System.Drawing.Size(40, 17);
  1167. this.labelEx51.TabIndex = 598;
  1168. this.labelEx51.Text = "QQ:";
  1169. //
  1170. // buttonTel1
  1171. //
  1172. this.buttonTel1.BackColor = System.Drawing.Color.Transparent;
  1173. this.buttonTel1.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("buttonTel1.BackImg")));
  1174. this.buttonTel1.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 27, 22);
  1175. this.buttonTel1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  1176. this.buttonTel1.ForeColor = System.Drawing.Color.White;
  1177. this.buttonTel1.IsCustomBackImg = false;
  1178. this.buttonTel1.IsShowText = false;
  1179. this.buttonTel1.Location = new System.Drawing.Point(376, 63);
  1180. this.buttonTel1.Name = "buttonTel1";
  1181. this.buttonTel1.Size = new System.Drawing.Size(27, 22);
  1182. this.buttonTel1.TabIndex = 596;
  1183. this.buttonTel1.Text = "buttonTel3";
  1184. this.buttonTel1.UseVisualStyleBackColor = false;
  1185. //
  1186. // labelEx50
  1187. //
  1188. this.labelEx50.AutoSize = true;
  1189. this.labelEx50.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1190. this.labelEx50.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1191. this.labelEx50.Location = new System.Drawing.Point(218, 66);
  1192. this.labelEx50.Name = "labelEx50";
  1193. this.labelEx50.Size = new System.Drawing.Size(68, 17);
  1194. this.labelEx50.TabIndex = 595;
  1195. this.labelEx50.Text = "老公手机:";
  1196. //
  1197. // labelEx47
  1198. //
  1199. this.labelEx47.AutoSize = true;
  1200. this.labelEx47.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1201. this.labelEx47.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  1202. this.labelEx47.Location = new System.Drawing.Point(210, 38);
  1203. this.labelEx47.Name = "labelEx47";
  1204. this.labelEx47.Size = new System.Drawing.Size(13, 17);
  1205. this.labelEx47.TabIndex = 594;
  1206. this.labelEx47.Text = "*";
  1207. //
  1208. // btnDial
  1209. //
  1210. this.btnDial.BackColor = System.Drawing.Color.Transparent;
  1211. this.btnDial.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnDial.BackImg")));
  1212. this.btnDial.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 27, 22);
  1213. this.btnDial.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  1214. this.btnDial.ForeColor = System.Drawing.Color.White;
  1215. this.btnDial.IsCustomBackImg = false;
  1216. this.btnDial.IsShowText = false;
  1217. this.btnDial.Location = new System.Drawing.Point(376, 33);
  1218. this.btnDial.Name = "btnDial";
  1219. this.btnDial.Size = new System.Drawing.Size(27, 22);
  1220. this.btnDial.TabIndex = 592;
  1221. this.btnDial.Text = "buttonTel1";
  1222. this.btnDial.UseVisualStyleBackColor = false;
  1223. //
  1224. // labelEx29
  1225. //
  1226. this.labelEx29.AutoSize = true;
  1227. this.labelEx29.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1228. this.labelEx29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  1229. this.labelEx29.Location = new System.Drawing.Point(10, 38);
  1230. this.labelEx29.Name = "labelEx29";
  1231. this.labelEx29.Size = new System.Drawing.Size(13, 17);
  1232. this.labelEx29.TabIndex = 590;
  1233. this.labelEx29.Text = "*";
  1234. //
  1235. // panelEx3
  1236. //
  1237. this.panelEx3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  1238. this.panelEx3.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  1239. this.panelEx3.BorderWidth = 1;
  1240. this.panelEx3.Controls.Add(this.dateBabyBirthday);
  1241. this.panelEx3.Controls.Add(this.labelEx31);
  1242. this.panelEx3.Controls.Add(this.labelEx42);
  1243. this.panelEx3.Controls.Add(this.cbxFeeding);
  1244. this.panelEx3.Controls.Add(this.chkLunar);
  1245. this.panelEx3.Controls.Add(this.radioButtonEx2);
  1246. this.panelEx3.Controls.Add(this.radioButtonEx1);
  1247. this.panelEx3.Controls.Add(this.txtBabyName);
  1248. this.panelEx3.Controls.Add(this.labelEx2);
  1249. this.panelEx3.Controls.Add(this.labelEx3);
  1250. this.panelEx3.Controls.Add(this.buttonForm5);
  1251. this.panelEx3.Controls.Add(this.labelEx4);
  1252. this.panelEx3.Location = new System.Drawing.Point(1, 91);
  1253. this.panelEx3.Name = "panelEx3";
  1254. this.panelEx3.Size = new System.Drawing.Size(901, 29);
  1255. this.panelEx3.TabIndex = 585;
  1256. //
  1257. // dateBabyBirthday
  1258. //
  1259. this.dateBabyBirthday.Location = new System.Drawing.Point(465, 4);
  1260. this.dateBabyBirthday.Name = "dateBabyBirthday";
  1261. this.dateBabyBirthday.Size = new System.Drawing.Size(86, 21);
  1262. this.dateBabyBirthday.StrValue = "";
  1263. this.dateBabyBirthday.TabIndex = 478;
  1264. //
  1265. // labelEx31
  1266. //
  1267. this.labelEx31.AutoSize = true;
  1268. this.labelEx31.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1269. this.labelEx31.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1270. this.labelEx31.Location = new System.Drawing.Point(399, 6);
  1271. this.labelEx31.Name = "labelEx31";
  1272. this.labelEx31.Size = new System.Drawing.Size(68, 17);
  1273. this.labelEx31.TabIndex = 471;
  1274. this.labelEx31.Text = "宝宝生日:";
  1275. //
  1276. // labelEx42
  1277. //
  1278. this.labelEx42.AutoSize = true;
  1279. this.labelEx42.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1280. this.labelEx42.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  1281. this.labelEx42.Location = new System.Drawing.Point(391, 8);
  1282. this.labelEx42.Name = "labelEx42";
  1283. this.labelEx42.Size = new System.Drawing.Size(13, 17);
  1284. this.labelEx42.TabIndex = 484;
  1285. this.labelEx42.Text = "*";
  1286. //
  1287. // cbxFeeding
  1288. //
  1289. this.cbxFeeding.AfterSelectLevelFirstNode = true;
  1290. this.cbxFeeding.DropDownHeight = 220;
  1291. this.cbxFeeding.DropDownShow = false;
  1292. this.cbxFeeding.FormattingEnabled = true;
  1293. this.cbxFeeding.IntegralHeight = false;
  1294. this.cbxFeeding.IsNodeMouseClick = true;
  1295. this.cbxFeeding.IsSelectParentNode = false;
  1296. this.cbxFeeding.Location = new System.Drawing.Point(702, 5);
  1297. this.cbxFeeding.Name = "cbxFeeding";
  1298. this.cbxFeeding.ReadOnly = true;
  1299. this.cbxFeeding.SelectedNode = null;
  1300. this.cbxFeeding.Size = new System.Drawing.Size(144, 20);
  1301. this.cbxFeeding.StrGetName = "";
  1302. this.cbxFeeding.StrGetTagName = "";
  1303. this.cbxFeeding.StrKey = null;
  1304. this.cbxFeeding.TabIndex = 506;
  1305. //
  1306. // chkLunar
  1307. //
  1308. this.chkLunar.AutoSize = true;
  1309. this.chkLunar.BackColor = System.Drawing.Color.Transparent;
  1310. this.chkLunar.CurrentCheckState = LYFZ.ComponentLibrary.CheckStateEx.Unchecked;
  1311. this.chkLunar.Font = new System.Drawing.Font("微软雅黑", 9F);
  1312. this.chkLunar.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1313. this.chkLunar.Fourstates = false;
  1314. this.chkLunar.IsGreenTick = false;
  1315. this.chkLunar.Location = new System.Drawing.Point(557, 4);
  1316. this.chkLunar.Name = "chkLunar";
  1317. this.chkLunar.Size = new System.Drawing.Size(51, 21);
  1318. this.chkLunar.TabIndex = 472;
  1319. this.chkLunar.Text = "农历";
  1320. this.chkLunar.UseVisualStyleBackColor = false;
  1321. //
  1322. // radioButtonEx2
  1323. //
  1324. this.radioButtonEx2.AutoSize = true;
  1325. this.radioButtonEx2.BackColor = System.Drawing.Color.Transparent;
  1326. this.radioButtonEx2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1327. this.radioButtonEx2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1328. this.radioButtonEx2.Location = new System.Drawing.Point(328, 4);
  1329. this.radioButtonEx2.Name = "radioButtonEx2";
  1330. this.radioButtonEx2.Size = new System.Drawing.Size(38, 21);
  1331. this.radioButtonEx2.TabIndex = 469;
  1332. this.radioButtonEx2.Text = "女";
  1333. this.radioButtonEx2.UseVisualStyleBackColor = false;
  1334. //
  1335. // radioButtonEx1
  1336. //
  1337. this.radioButtonEx1.AutoSize = true;
  1338. this.radioButtonEx1.BackColor = System.Drawing.Color.Transparent;
  1339. this.radioButtonEx1.Checked = true;
  1340. this.radioButtonEx1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1341. this.radioButtonEx1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1342. this.radioButtonEx1.Location = new System.Drawing.Point(282, 4);
  1343. this.radioButtonEx1.Name = "radioButtonEx1";
  1344. this.radioButtonEx1.Size = new System.Drawing.Size(38, 21);
  1345. this.radioButtonEx1.TabIndex = 468;
  1346. this.radioButtonEx1.TabStop = true;
  1347. this.radioButtonEx1.Text = "男";
  1348. this.radioButtonEx1.UseVisualStyleBackColor = false;
  1349. //
  1350. // txtBabyName
  1351. //
  1352. this.txtBabyName.BackColor = System.Drawing.Color.Transparent;
  1353. this.txtBabyName.Font = new System.Drawing.Font("微软雅黑", 9F);
  1354. this.txtBabyName.Icon = null;
  1355. this.txtBabyName.IconIsButton = false;
  1356. this.txtBabyName.IsPasswordChat = '\0';
  1357. this.txtBabyName.IsSystemPasswordChar = false;
  1358. this.txtBabyName.Lines = new string[0];
  1359. this.txtBabyName.Location = new System.Drawing.Point(82, 2);
  1360. this.txtBabyName.Margin = new System.Windows.Forms.Padding(0);
  1361. this.txtBabyName.MaxLength = 32767;
  1362. this.txtBabyName.MinimumSize = new System.Drawing.Size(0, 26);
  1363. this.txtBabyName.MouseBack = null;
  1364. this.txtBabyName.Multiline = false;
  1365. this.txtBabyName.Name = "txtBabyName";
  1366. this.txtBabyName.NormlBack = null;
  1367. this.txtBabyName.Padding = new System.Windows.Forms.Padding(5);
  1368. this.txtBabyName.ReadOnly = false;
  1369. this.txtBabyName.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1370. this.txtBabyName.Size = new System.Drawing.Size(110, 26);
  1371. this.txtBabyName.TabIndex = 464;
  1372. this.txtBabyName.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  1373. this.txtBabyName.WaterColor = System.Drawing.Color.DarkGray;
  1374. this.txtBabyName.WaterText = "";
  1375. this.txtBabyName.WordWrap = true;
  1376. //
  1377. // labelEx2
  1378. //
  1379. this.labelEx2.AutoSize = true;
  1380. this.labelEx2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1381. this.labelEx2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1382. this.labelEx2.Location = new System.Drawing.Point(17, 6);
  1383. this.labelEx2.Name = "labelEx2";
  1384. this.labelEx2.Size = new System.Drawing.Size(68, 17);
  1385. this.labelEx2.TabIndex = 457;
  1386. this.labelEx2.Text = "宝宝姓名:";
  1387. //
  1388. // labelEx3
  1389. //
  1390. this.labelEx3.AutoSize = true;
  1391. this.labelEx3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1392. this.labelEx3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1393. this.labelEx3.Location = new System.Drawing.Point(637, 6);
  1394. this.labelEx3.Name = "labelEx3";
  1395. this.labelEx3.Size = new System.Drawing.Size(68, 17);
  1396. this.labelEx3.TabIndex = 503;
  1397. this.labelEx3.Text = "喂养方式:";
  1398. //
  1399. // buttonForm5
  1400. //
  1401. this.buttonForm5.BackColor = System.Drawing.Color.Transparent;
  1402. this.buttonForm5.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("buttonForm5.BackImg")));
  1403. this.buttonForm5.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  1404. this.buttonForm5.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  1405. this.buttonForm5.ForeColor = System.Drawing.Color.White;
  1406. this.buttonForm5.IsCustomBackImg = false;
  1407. this.buttonForm5.IsShowText = true;
  1408. this.buttonForm5.Location = new System.Drawing.Point(852, 4);
  1409. this.buttonForm5.Name = "buttonForm5";
  1410. this.buttonForm5.Size = new System.Drawing.Size(45, 22);
  1411. this.buttonForm5.TabIndex = 505;
  1412. this.buttonForm5.Text = " 设置";
  1413. this.buttonForm5.UseVisualStyleBackColor = false;
  1414. //
  1415. // labelEx4
  1416. //
  1417. this.labelEx4.AutoSize = true;
  1418. this.labelEx4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1419. this.labelEx4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1420. this.labelEx4.Location = new System.Drawing.Point(218, 6);
  1421. this.labelEx4.Name = "labelEx4";
  1422. this.labelEx4.Size = new System.Drawing.Size(68, 17);
  1423. this.labelEx4.TabIndex = 459;
  1424. this.labelEx4.Text = "宝宝性别:";
  1425. //
  1426. // cbxBabyProfile
  1427. //
  1428. this.cbxBabyProfile.AutoSize = true;
  1429. this.cbxBabyProfile.BackColor = System.Drawing.Color.Transparent;
  1430. this.cbxBabyProfile.Checked = true;
  1431. this.cbxBabyProfile.CheckState = System.Windows.Forms.CheckState.Checked;
  1432. this.cbxBabyProfile.CurrentCheckState = LYFZ.ComponentLibrary.CheckStateEx.Unchecked;
  1433. this.cbxBabyProfile.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1434. this.cbxBabyProfile.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1435. this.cbxBabyProfile.Fourstates = false;
  1436. this.cbxBabyProfile.IsGreenTick = false;
  1437. this.cbxBabyProfile.Location = new System.Drawing.Point(66, 5);
  1438. this.cbxBabyProfile.Name = "cbxBabyProfile";
  1439. this.cbxBabyProfile.Size = new System.Drawing.Size(75, 21);
  1440. this.cbxBabyProfile.TabIndex = 587;
  1441. this.cbxBabyProfile.Text = "宝宝资料";
  1442. this.cbxBabyProfile.UseVisualStyleBackColor = false;
  1443. //
  1444. // cbxPregnant
  1445. //
  1446. this.cbxPregnant.AutoSize = true;
  1447. this.cbxPregnant.BackColor = System.Drawing.Color.Transparent;
  1448. this.cbxPregnant.CurrentCheckState = LYFZ.ComponentLibrary.CheckStateEx.Unchecked;
  1449. this.cbxPregnant.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1450. this.cbxPregnant.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1451. this.cbxPregnant.Fourstates = false;
  1452. this.cbxPregnant.IsGreenTick = false;
  1453. this.cbxPregnant.Location = new System.Drawing.Point(147, 5);
  1454. this.cbxPregnant.Name = "cbxPregnant";
  1455. this.cbxPregnant.Size = new System.Drawing.Size(75, 21);
  1456. this.cbxPregnant.TabIndex = 584;
  1457. this.cbxPregnant.Text = "孕妇资料";
  1458. this.cbxPregnant.UseVisualStyleBackColor = false;
  1459. //
  1460. // labelEx35
  1461. //
  1462. this.labelEx35.AutoSize = true;
  1463. this.labelEx35.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
  1464. this.labelEx35.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1465. this.labelEx35.Location = new System.Drawing.Point(6, 122);
  1466. this.labelEx35.Name = "labelEx35";
  1467. this.labelEx35.Size = new System.Drawing.Size(56, 17);
  1468. this.labelEx35.TabIndex = 573;
  1469. this.labelEx35.Text = "其他联系";
  1470. //
  1471. // labelEx34
  1472. //
  1473. this.labelEx34.AutoSize = true;
  1474. this.labelEx34.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
  1475. this.labelEx34.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1476. this.labelEx34.Location = new System.Drawing.Point(4, 8);
  1477. this.labelEx34.Name = "labelEx34";
  1478. this.labelEx34.Size = new System.Drawing.Size(56, 17);
  1479. this.labelEx34.TabIndex = 572;
  1480. this.labelEx34.Text = "客户资料";
  1481. //
  1482. // txtParentsZip
  1483. //
  1484. this.txtParentsZip.BackColor = System.Drawing.Color.Transparent;
  1485. this.txtParentsZip.Icon = null;
  1486. this.txtParentsZip.IconIsButton = false;
  1487. this.txtParentsZip.IsPasswordChat = '\0';
  1488. this.txtParentsZip.IsSystemPasswordChar = false;
  1489. this.txtParentsZip.Lines = new string[0];
  1490. this.txtParentsZip.Location = new System.Drawing.Point(526, 200);
  1491. this.txtParentsZip.Margin = new System.Windows.Forms.Padding(0);
  1492. this.txtParentsZip.MaxLength = 6;
  1493. this.txtParentsZip.MinimumSize = new System.Drawing.Size(0, 26);
  1494. this.txtParentsZip.MouseBack = null;
  1495. this.txtParentsZip.Multiline = false;
  1496. this.txtParentsZip.Name = "txtParentsZip";
  1497. this.txtParentsZip.NormlBack = null;
  1498. this.txtParentsZip.Padding = new System.Windows.Forms.Padding(5);
  1499. this.txtParentsZip.ReadOnly = false;
  1500. this.txtParentsZip.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1501. this.txtParentsZip.Size = new System.Drawing.Size(60, 26);
  1502. this.txtParentsZip.TabIndex = 559;
  1503. this.txtParentsZip.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  1504. this.txtParentsZip.WaterColor = System.Drawing.Color.DarkGray;
  1505. this.txtParentsZip.WaterText = "";
  1506. this.txtParentsZip.WordWrap = true;
  1507. //
  1508. // txtHusbandZip
  1509. //
  1510. this.txtHusbandZip.BackColor = System.Drawing.Color.Transparent;
  1511. this.txtHusbandZip.Icon = null;
  1512. this.txtHusbandZip.IconIsButton = false;
  1513. this.txtHusbandZip.IsPasswordChat = '\0';
  1514. this.txtHusbandZip.IsSystemPasswordChar = false;
  1515. this.txtHusbandZip.Lines = new string[0];
  1516. this.txtHusbandZip.Location = new System.Drawing.Point(526, 170);
  1517. this.txtHusbandZip.Margin = new System.Windows.Forms.Padding(0);
  1518. this.txtHusbandZip.MaxLength = 6;
  1519. this.txtHusbandZip.MinimumSize = new System.Drawing.Size(0, 26);
  1520. this.txtHusbandZip.MouseBack = null;
  1521. this.txtHusbandZip.Multiline = false;
  1522. this.txtHusbandZip.Name = "txtHusbandZip";
  1523. this.txtHusbandZip.NormlBack = null;
  1524. this.txtHusbandZip.Padding = new System.Windows.Forms.Padding(5);
  1525. this.txtHusbandZip.ReadOnly = false;
  1526. this.txtHusbandZip.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1527. this.txtHusbandZip.Size = new System.Drawing.Size(60, 26);
  1528. this.txtHusbandZip.TabIndex = 560;
  1529. this.txtHusbandZip.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  1530. this.txtHusbandZip.WaterColor = System.Drawing.Color.DarkGray;
  1531. this.txtHusbandZip.WaterText = "";
  1532. this.txtHusbandZip.WordWrap = true;
  1533. //
  1534. // txtHomeZip
  1535. //
  1536. this.txtHomeZip.BackColor = System.Drawing.Color.Transparent;
  1537. this.txtHomeZip.Icon = null;
  1538. this.txtHomeZip.IconIsButton = false;
  1539. this.txtHomeZip.IsPasswordChat = '\0';
  1540. this.txtHomeZip.IsSystemPasswordChar = false;
  1541. this.txtHomeZip.Lines = new string[0];
  1542. this.txtHomeZip.Location = new System.Drawing.Point(526, 141);
  1543. this.txtHomeZip.Margin = new System.Windows.Forms.Padding(0);
  1544. this.txtHomeZip.MaxLength = 6;
  1545. this.txtHomeZip.MinimumSize = new System.Drawing.Size(0, 26);
  1546. this.txtHomeZip.MouseBack = null;
  1547. this.txtHomeZip.Multiline = false;
  1548. this.txtHomeZip.Name = "txtHomeZip";
  1549. this.txtHomeZip.NormlBack = null;
  1550. this.txtHomeZip.Padding = new System.Windows.Forms.Padding(5);
  1551. this.txtHomeZip.ReadOnly = false;
  1552. this.txtHomeZip.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1553. this.txtHomeZip.Size = new System.Drawing.Size(60, 26);
  1554. this.txtHomeZip.TabIndex = 561;
  1555. this.txtHomeZip.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  1556. this.txtHomeZip.WaterColor = System.Drawing.Color.DarkGray;
  1557. this.txtHomeZip.WaterText = "";
  1558. this.txtHomeZip.WordWrap = true;
  1559. //
  1560. // labelEx18
  1561. //
  1562. this.labelEx18.AutoSize = true;
  1563. this.labelEx18.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1564. this.labelEx18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1565. this.labelEx18.Location = new System.Drawing.Point(18, 145);
  1566. this.labelEx18.Name = "labelEx18";
  1567. this.labelEx18.Size = new System.Drawing.Size(68, 17);
  1568. this.labelEx18.TabIndex = 550;
  1569. this.labelEx18.Text = "自家地址:";
  1570. //
  1571. // labelEx19
  1572. //
  1573. this.labelEx19.AutoSize = true;
  1574. this.labelEx19.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1575. this.labelEx19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1576. this.labelEx19.Location = new System.Drawing.Point(18, 174);
  1577. this.labelEx19.Name = "labelEx19";
  1578. this.labelEx19.Size = new System.Drawing.Size(68, 17);
  1579. this.labelEx19.TabIndex = 551;
  1580. this.labelEx19.Text = "婆家地址:";
  1581. //
  1582. // labelEx20
  1583. //
  1584. this.labelEx20.AutoSize = true;
  1585. this.labelEx20.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1586. this.labelEx20.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1587. this.labelEx20.Location = new System.Drawing.Point(18, 204);
  1588. this.labelEx20.Name = "labelEx20";
  1589. this.labelEx20.Size = new System.Drawing.Size(68, 17);
  1590. this.labelEx20.TabIndex = 552;
  1591. this.labelEx20.Text = "娘家地址:";
  1592. //
  1593. // labelEx21
  1594. //
  1595. this.labelEx21.AutoSize = true;
  1596. this.labelEx21.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1597. this.labelEx21.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1598. this.labelEx21.Location = new System.Drawing.Point(486, 145);
  1599. this.labelEx21.Name = "labelEx21";
  1600. this.labelEx21.Size = new System.Drawing.Size(44, 17);
  1601. this.labelEx21.TabIndex = 553;
  1602. this.labelEx21.Text = "邮编:";
  1603. //
  1604. // labelEx22
  1605. //
  1606. this.labelEx22.AutoSize = true;
  1607. this.labelEx22.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1608. this.labelEx22.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1609. this.labelEx22.Location = new System.Drawing.Point(486, 174);
  1610. this.labelEx22.Name = "labelEx22";
  1611. this.labelEx22.Size = new System.Drawing.Size(44, 17);
  1612. this.labelEx22.TabIndex = 554;
  1613. this.labelEx22.Text = "邮编:";
  1614. //
  1615. // labelEx23
  1616. //
  1617. this.labelEx23.AutoSize = true;
  1618. this.labelEx23.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1619. this.labelEx23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1620. this.labelEx23.Location = new System.Drawing.Point(486, 204);
  1621. this.labelEx23.Name = "labelEx23";
  1622. this.labelEx23.Size = new System.Drawing.Size(44, 17);
  1623. this.labelEx23.TabIndex = 555;
  1624. this.labelEx23.Text = "邮编:";
  1625. //
  1626. // txtMaidenCalls
  1627. //
  1628. this.txtMaidenCalls.BackColor = System.Drawing.Color.Transparent;
  1629. this.txtMaidenCalls.Font = new System.Drawing.Font("微软雅黑", 9F);
  1630. this.txtMaidenCalls.Icon = null;
  1631. this.txtMaidenCalls.IconIsButton = false;
  1632. this.txtMaidenCalls.IsPasswordChat = '\0';
  1633. this.txtMaidenCalls.IsSystemPasswordChar = false;
  1634. this.txtMaidenCalls.Lines = new string[0];
  1635. this.txtMaidenCalls.Location = new System.Drawing.Point(679, 200);
  1636. this.txtMaidenCalls.Margin = new System.Windows.Forms.Padding(0);
  1637. this.txtMaidenCalls.MaxLength = 13;
  1638. this.txtMaidenCalls.MinimumSize = new System.Drawing.Size(0, 26);
  1639. this.txtMaidenCalls.MouseBack = null;
  1640. this.txtMaidenCalls.Multiline = false;
  1641. this.txtMaidenCalls.Name = "txtMaidenCalls";
  1642. this.txtMaidenCalls.NormlBack = null;
  1643. this.txtMaidenCalls.Padding = new System.Windows.Forms.Padding(5);
  1644. this.txtMaidenCalls.ReadOnly = false;
  1645. this.txtMaidenCalls.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1646. this.txtMaidenCalls.Size = new System.Drawing.Size(105, 26);
  1647. this.txtMaidenCalls.TabIndex = 534;
  1648. this.txtMaidenCalls.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  1649. this.txtMaidenCalls.WaterColor = System.Drawing.Color.DarkGray;
  1650. this.txtMaidenCalls.WaterText = "";
  1651. this.txtMaidenCalls.WordWrap = true;
  1652. //
  1653. // txtFamilyPhone
  1654. //
  1655. this.txtFamilyPhone.BackColor = System.Drawing.Color.Transparent;
  1656. this.txtFamilyPhone.Font = new System.Drawing.Font("微软雅黑", 9F);
  1657. this.txtFamilyPhone.Icon = null;
  1658. this.txtFamilyPhone.IconIsButton = false;
  1659. this.txtFamilyPhone.IsPasswordChat = '\0';
  1660. this.txtFamilyPhone.IsSystemPasswordChar = false;
  1661. this.txtFamilyPhone.Lines = new string[0];
  1662. this.txtFamilyPhone.Location = new System.Drawing.Point(679, 170);
  1663. this.txtFamilyPhone.Margin = new System.Windows.Forms.Padding(0);
  1664. this.txtFamilyPhone.MaxLength = 13;
  1665. this.txtFamilyPhone.MinimumSize = new System.Drawing.Size(0, 26);
  1666. this.txtFamilyPhone.MouseBack = null;
  1667. this.txtFamilyPhone.Multiline = false;
  1668. this.txtFamilyPhone.Name = "txtFamilyPhone";
  1669. this.txtFamilyPhone.NormlBack = null;
  1670. this.txtFamilyPhone.Padding = new System.Windows.Forms.Padding(5);
  1671. this.txtFamilyPhone.ReadOnly = false;
  1672. this.txtFamilyPhone.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1673. this.txtFamilyPhone.Size = new System.Drawing.Size(105, 26);
  1674. this.txtFamilyPhone.TabIndex = 535;
  1675. this.txtFamilyPhone.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  1676. this.txtFamilyPhone.WaterColor = System.Drawing.Color.DarkGray;
  1677. this.txtFamilyPhone.WaterText = "";
  1678. this.txtFamilyPhone.WordWrap = true;
  1679. //
  1680. // labelEx17
  1681. //
  1682. this.labelEx17.AutoSize = true;
  1683. this.labelEx17.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1684. this.labelEx17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1685. this.labelEx17.Location = new System.Drawing.Point(614, 204);
  1686. this.labelEx17.Name = "labelEx17";
  1687. this.labelEx17.Size = new System.Drawing.Size(68, 17);
  1688. this.labelEx17.TabIndex = 533;
  1689. this.labelEx17.Text = "娘家电话:";
  1690. //
  1691. // txtHomePhone
  1692. //
  1693. this.txtHomePhone.BackColor = System.Drawing.Color.Transparent;
  1694. this.txtHomePhone.Font = new System.Drawing.Font("微软雅黑", 9F);
  1695. this.txtHomePhone.Icon = null;
  1696. this.txtHomePhone.IconIsButton = false;
  1697. this.txtHomePhone.IsPasswordChat = '\0';
  1698. this.txtHomePhone.IsSystemPasswordChar = false;
  1699. this.txtHomePhone.Lines = new string[0];
  1700. this.txtHomePhone.Location = new System.Drawing.Point(679, 141);
  1701. this.txtHomePhone.Margin = new System.Windows.Forms.Padding(0);
  1702. this.txtHomePhone.MaxLength = 13;
  1703. this.txtHomePhone.MinimumSize = new System.Drawing.Size(0, 26);
  1704. this.txtHomePhone.MouseBack = null;
  1705. this.txtHomePhone.Multiline = false;
  1706. this.txtHomePhone.Name = "txtHomePhone";
  1707. this.txtHomePhone.NormlBack = null;
  1708. this.txtHomePhone.Padding = new System.Windows.Forms.Padding(5);
  1709. this.txtHomePhone.ReadOnly = false;
  1710. this.txtHomePhone.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1711. this.txtHomePhone.Size = new System.Drawing.Size(105, 26);
  1712. this.txtHomePhone.TabIndex = 536;
  1713. this.txtHomePhone.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  1714. this.txtHomePhone.WaterColor = System.Drawing.Color.DarkGray;
  1715. this.txtHomePhone.WaterText = "";
  1716. this.txtHomePhone.WordWrap = true;
  1717. //
  1718. // labelEx16
  1719. //
  1720. this.labelEx16.AutoSize = true;
  1721. this.labelEx16.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1722. this.labelEx16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1723. this.labelEx16.Location = new System.Drawing.Point(614, 174);
  1724. this.labelEx16.Name = "labelEx16";
  1725. this.labelEx16.Size = new System.Drawing.Size(68, 17);
  1726. this.labelEx16.TabIndex = 532;
  1727. this.labelEx16.Text = "婆家电话:";
  1728. //
  1729. // labelEx15
  1730. //
  1731. this.labelEx15.AutoSize = true;
  1732. this.labelEx15.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1733. this.labelEx15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1734. this.labelEx15.Location = new System.Drawing.Point(614, 145);
  1735. this.labelEx15.Name = "labelEx15";
  1736. this.labelEx15.Size = new System.Drawing.Size(68, 17);
  1737. this.labelEx15.TabIndex = 531;
  1738. this.labelEx15.Text = "家庭电话:";
  1739. //
  1740. // btnSavedData
  1741. //
  1742. this.btnSavedData.BackColor = System.Drawing.Color.Transparent;
  1743. this.btnSavedData.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnSavedData.BackImg")));
  1744. this.btnSavedData.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  1745. this.btnSavedData.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  1746. this.btnSavedData.ForeColor = System.Drawing.Color.White;
  1747. this.btnSavedData.IsCustomBackImg = false;
  1748. this.btnSavedData.IsShowText = true;
  1749. this.btnSavedData.Location = new System.Drawing.Point(812, 138);
  1750. this.btnSavedData.Name = "btnSavedData";
  1751. this.btnSavedData.Size = new System.Drawing.Size(85, 35);
  1752. this.btnSavedData.TabIndex = 546;
  1753. this.btnSavedData.Text = " 保存资料";
  1754. this.btnSavedData.UseVisualStyleBackColor = false;
  1755. //
  1756. // btnclose
  1757. //
  1758. this.btnclose.BackColor = System.Drawing.Color.Transparent;
  1759. this.btnclose.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnclose.BackImg")));
  1760. this.btnclose.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  1761. this.btnclose.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  1762. this.btnclose.ForeColor = System.Drawing.Color.White;
  1763. this.btnclose.IsCustomBackImg = false;
  1764. this.btnclose.IsShowText = true;
  1765. this.btnclose.Location = new System.Drawing.Point(812, 217);
  1766. this.btnclose.Name = "btnclose";
  1767. this.btnclose.Size = new System.Drawing.Size(85, 35);
  1768. this.btnclose.TabIndex = 545;
  1769. this.btnclose.Text = " 关 闭";
  1770. this.btnclose.UseVisualStyleBackColor = false;
  1771. //
  1772. // labelEx12
  1773. //
  1774. this.labelEx12.AutoSize = true;
  1775. this.labelEx12.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1776. this.labelEx12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1777. this.labelEx12.Location = new System.Drawing.Point(42, 234);
  1778. this.labelEx12.Name = "labelEx12";
  1779. this.labelEx12.Size = new System.Drawing.Size(44, 17);
  1780. this.labelEx12.TabIndex = 540;
  1781. this.labelEx12.Text = "备注:";
  1782. //
  1783. // panelLostRemark
  1784. //
  1785. this.panelLostRemark.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  1786. this.panelLostRemark.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  1787. this.panelLostRemark.BorderWidth = 1;
  1788. this.panelLostRemark.Controls.Add(this.txtLostRemark);
  1789. this.panelLostRemark.Controls.Add(this.labelEx13);
  1790. this.panelLostRemark.Dock = System.Windows.Forms.DockStyle.Top;
  1791. this.panelLostRemark.Location = new System.Drawing.Point(0, 85);
  1792. this.panelLostRemark.Name = "panelLostRemark";
  1793. this.panelLostRemark.Size = new System.Drawing.Size(910, 27);
  1794. this.panelLostRemark.TabIndex = 536;
  1795. this.panelLostRemark.Visible = false;
  1796. //
  1797. // txtLostRemark
  1798. //
  1799. this.txtLostRemark.BackColor = System.Drawing.Color.Transparent;
  1800. this.txtLostRemark.Font = new System.Drawing.Font("微软雅黑", 9F);
  1801. this.txtLostRemark.Icon = null;
  1802. this.txtLostRemark.IconIsButton = false;
  1803. this.txtLostRemark.IsPasswordChat = '\0';
  1804. this.txtLostRemark.IsSystemPasswordChar = false;
  1805. this.txtLostRemark.Lines = new string[0];
  1806. this.txtLostRemark.Location = new System.Drawing.Point(79, 0);
  1807. this.txtLostRemark.Margin = new System.Windows.Forms.Padding(0);
  1808. this.txtLostRemark.MaxLength = 32767;
  1809. this.txtLostRemark.MinimumSize = new System.Drawing.Size(0, 26);
  1810. this.txtLostRemark.MouseBack = null;
  1811. this.txtLostRemark.Multiline = false;
  1812. this.txtLostRemark.Name = "txtLostRemark";
  1813. this.txtLostRemark.NormlBack = null;
  1814. this.txtLostRemark.Padding = new System.Windows.Forms.Padding(5);
  1815. this.txtLostRemark.ReadOnly = false;
  1816. this.txtLostRemark.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1817. this.txtLostRemark.Size = new System.Drawing.Size(824, 26);
  1818. this.txtLostRemark.TabIndex = 543;
  1819. this.txtLostRemark.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  1820. this.txtLostRemark.WaterColor = System.Drawing.Color.DarkGray;
  1821. this.txtLostRemark.WaterText = "";
  1822. this.txtLostRemark.WordWrap = true;
  1823. //
  1824. // labelEx13
  1825. //
  1826. this.labelEx13.AutoSize = true;
  1827. this.labelEx13.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1828. this.labelEx13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1829. this.labelEx13.Location = new System.Drawing.Point(14, 4);
  1830. this.labelEx13.Name = "labelEx13";
  1831. this.labelEx13.Size = new System.Drawing.Size(68, 17);
  1832. this.labelEx13.TabIndex = 542;
  1833. this.labelEx13.Text = "流失备注:";
  1834. //
  1835. // panelEx8
  1836. //
  1837. this.panelEx8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  1838. this.panelEx8.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  1839. this.panelEx8.BorderWidth = 1;
  1840. this.panelEx8.Controls.Add(this.panelEx2);
  1841. this.panelEx8.Controls.Add(this.cbxArea);
  1842. this.panelEx8.Controls.Add(this.cbxRetail);
  1843. this.panelEx8.Controls.Add(this.comboBoxTreeViewEx9);
  1844. this.panelEx8.Controls.Add(this.cmbtreevBusinessIntent);
  1845. this.panelEx8.Controls.Add(this.cbxHospital);
  1846. this.panelEx8.Controls.Add(this.cbxCustomerGroups);
  1847. this.panelEx8.Controls.Add(this.labelEx25);
  1848. this.panelEx8.Controls.Add(this.labelEx26);
  1849. this.panelEx8.Controls.Add(this.labelEx10);
  1850. this.panelEx8.Controls.Add(this.labelEx7);
  1851. this.panelEx8.Controls.Add(this.labelEx24);
  1852. this.panelEx8.Controls.Add(this.labelEx11);
  1853. this.panelEx8.Controls.Add(this.panelEx5);
  1854. this.panelEx8.Controls.Add(this.labelEx28);
  1855. this.panelEx8.Controls.Add(this.labelEx27);
  1856. this.panelEx8.Controls.Add(this.labelEx45);
  1857. this.panelEx8.Controls.Add(this.labelEx44);
  1858. this.panelEx8.Controls.Add(this.labelEx43);
  1859. this.panelEx8.Controls.Add(this.labelEx41);
  1860. this.panelEx8.Controls.Add(this.labelEx33);
  1861. this.panelEx8.Controls.Add(this.buttonForm4);
  1862. this.panelEx8.Controls.Add(this.buttonForm2);
  1863. this.panelEx8.Controls.Add(this.buttonForm3);
  1864. this.panelEx8.Controls.Add(this.buttonForm1);
  1865. this.panelEx8.Controls.Add(this.butnSet2);
  1866. this.panelEx8.Controls.Add(this.cbxMessage);
  1867. this.panelEx8.Dock = System.Windows.Forms.DockStyle.Top;
  1868. this.panelEx8.Location = new System.Drawing.Point(0, 0);
  1869. this.panelEx8.Name = "panelEx8";
  1870. this.panelEx8.Size = new System.Drawing.Size(910, 85);
  1871. this.panelEx8.TabIndex = 535;
  1872. //
  1873. // panelEx2
  1874. //
  1875. this.panelEx2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  1876. this.panelEx2.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  1877. this.panelEx2.BorderWidth = 1;
  1878. this.panelEx2.Controls.Add(this.txtsingle);
  1879. this.panelEx2.Controls.Add(this.labelEx6);
  1880. this.panelEx2.Location = new System.Drawing.Point(717, 27);
  1881. this.panelEx2.Name = "panelEx2";
  1882. this.panelEx2.Size = new System.Drawing.Size(186, 28);
  1883. this.panelEx2.TabIndex = 624;
  1884. this.panelEx2.Visible = false;
  1885. //
  1886. // txtsingle
  1887. //
  1888. this.txtsingle.BackColor = System.Drawing.Color.Transparent;
  1889. this.txtsingle.Font = new System.Drawing.Font("微软雅黑", 9F);
  1890. this.txtsingle.Icon = null;
  1891. this.txtsingle.IconIsButton = false;
  1892. this.txtsingle.IsPasswordChat = '\0';
  1893. this.txtsingle.IsSystemPasswordChar = false;
  1894. this.txtsingle.Lines = new string[0];
  1895. this.txtsingle.Location = new System.Drawing.Point(78, 1);
  1896. this.txtsingle.Margin = new System.Windows.Forms.Padding(0);
  1897. this.txtsingle.MaxLength = 32767;
  1898. this.txtsingle.MinimumSize = new System.Drawing.Size(0, 24);
  1899. this.txtsingle.MouseBack = null;
  1900. this.txtsingle.Multiline = false;
  1901. this.txtsingle.Name = "txtsingle";
  1902. this.txtsingle.NormlBack = null;
  1903. this.txtsingle.Padding = new System.Windows.Forms.Padding(4);
  1904. this.txtsingle.ReadOnly = true;
  1905. this.txtsingle.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1906. this.txtsingle.Size = new System.Drawing.Size(108, 25);
  1907. this.txtsingle.TabIndex = 353;
  1908. this.txtsingle.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  1909. this.txtsingle.WaterColor = System.Drawing.Color.DarkGray;
  1910. this.txtsingle.WaterText = "";
  1911. this.txtsingle.WordWrap = true;
  1912. //
  1913. // labelEx6
  1914. //
  1915. this.labelEx6.AutoSize = true;
  1916. this.labelEx6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1917. this.labelEx6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1918. this.labelEx6.Location = new System.Drawing.Point(9, 5);
  1919. this.labelEx6.Name = "labelEx6";
  1920. this.labelEx6.Size = new System.Drawing.Size(68, 17);
  1921. this.labelEx6.TabIndex = 343;
  1922. this.labelEx6.Text = "来单批号:";
  1923. //
  1924. // cbxArea
  1925. //
  1926. this.cbxArea.AfterSelectLevelFirstNode = true;
  1927. this.cbxArea.DropDownHeight = 220;
  1928. this.cbxArea.DropDownShow = false;
  1929. this.cbxArea.FormattingEnabled = true;
  1930. this.cbxArea.IntegralHeight = false;
  1931. this.cbxArea.IsNodeMouseClick = true;
  1932. this.cbxArea.IsSelectParentNode = false;
  1933. this.cbxArea.Location = new System.Drawing.Point(321, 56);
  1934. this.cbxArea.Name = "cbxArea";
  1935. this.cbxArea.ReadOnly = true;
  1936. this.cbxArea.SelectedNode = null;
  1937. this.cbxArea.Size = new System.Drawing.Size(97, 20);
  1938. this.cbxArea.StrGetName = "";
  1939. this.cbxArea.StrGetTagName = "";
  1940. this.cbxArea.StrKey = null;
  1941. this.cbxArea.TabIndex = 623;
  1942. //
  1943. // cbxRetail
  1944. //
  1945. this.cbxRetail.AfterSelectLevelFirstNode = true;
  1946. this.cbxRetail.DropDownHeight = 220;
  1947. this.cbxRetail.DropDownShow = false;
  1948. this.cbxRetail.FormattingEnabled = true;
  1949. this.cbxRetail.IntegralHeight = false;
  1950. this.cbxRetail.IsNodeMouseClick = true;
  1951. this.cbxRetail.IsSelectParentNode = false;
  1952. this.cbxRetail.Location = new System.Drawing.Point(80, 30);
  1953. this.cbxRetail.Name = "cbxRetail";
  1954. this.cbxRetail.ReadOnly = true;
  1955. this.cbxRetail.SelectedNode = null;
  1956. this.cbxRetail.Size = new System.Drawing.Size(147, 20);
  1957. this.cbxRetail.StrGetName = "";
  1958. this.cbxRetail.StrGetTagName = "";
  1959. this.cbxRetail.StrKey = null;
  1960. this.cbxRetail.TabIndex = 621;
  1961. //
  1962. // comboBoxTreeViewEx9
  1963. //
  1964. this.comboBoxTreeViewEx9.AfterSelectLevelFirstNode = true;
  1965. this.comboBoxTreeViewEx9.DropDownHeight = 220;
  1966. this.comboBoxTreeViewEx9.DropDownShow = false;
  1967. this.comboBoxTreeViewEx9.FormattingEnabled = true;
  1968. this.comboBoxTreeViewEx9.IntegralHeight = false;
  1969. this.comboBoxTreeViewEx9.IsNodeMouseClick = true;
  1970. this.comboBoxTreeViewEx9.IsSelectParentNode = false;
  1971. this.comboBoxTreeViewEx9.Location = new System.Drawing.Point(558, 55);
  1972. this.comboBoxTreeViewEx9.Name = "comboBoxTreeViewEx9";
  1973. this.comboBoxTreeViewEx9.ReadOnly = true;
  1974. this.comboBoxTreeViewEx9.SelectedNode = null;
  1975. this.comboBoxTreeViewEx9.Size = new System.Drawing.Size(97, 20);
  1976. this.comboBoxTreeViewEx9.StrGetName = "";
  1977. this.comboBoxTreeViewEx9.StrGetTagName = "";
  1978. this.comboBoxTreeViewEx9.StrKey = null;
  1979. this.comboBoxTreeViewEx9.TabIndex = 617;
  1980. //
  1981. // cmbtreevBusinessIntent
  1982. //
  1983. this.cmbtreevBusinessIntent.AfterSelectLevelFirstNode = true;
  1984. this.cmbtreevBusinessIntent.DropDownHeight = 220;
  1985. this.cmbtreevBusinessIntent.DropDownShow = false;
  1986. this.cmbtreevBusinessIntent.FormattingEnabled = true;
  1987. this.cmbtreevBusinessIntent.IntegralHeight = false;
  1988. this.cmbtreevBusinessIntent.IsNodeMouseClick = true;
  1989. this.cmbtreevBusinessIntent.IsSelectParentNode = false;
  1990. this.cmbtreevBusinessIntent.Location = new System.Drawing.Point(558, 30);
  1991. this.cmbtreevBusinessIntent.Name = "cmbtreevBusinessIntent";
  1992. this.cmbtreevBusinessIntent.ReadOnly = true;
  1993. this.cmbtreevBusinessIntent.SelectedNode = null;
  1994. this.cmbtreevBusinessIntent.Size = new System.Drawing.Size(97, 20);
  1995. this.cmbtreevBusinessIntent.StrGetName = "";
  1996. this.cmbtreevBusinessIntent.StrGetTagName = "";
  1997. this.cmbtreevBusinessIntent.StrKey = null;
  1998. this.cmbtreevBusinessIntent.TabIndex = 616;
  1999. //
  2000. // cbxHospital
  2001. //
  2002. this.cbxHospital.AfterSelectLevelFirstNode = true;
  2003. this.cbxHospital.DropDownHeight = 220;
  2004. this.cbxHospital.DropDownShow = false;
  2005. this.cbxHospital.FormattingEnabled = true;
  2006. this.cbxHospital.IntegralHeight = false;
  2007. this.cbxHospital.IsNodeMouseClick = true;
  2008. this.cbxHospital.IsSelectParentNode = false;
  2009. this.cbxHospital.Location = new System.Drawing.Point(80, 56);
  2010. this.cbxHospital.Name = "cbxHospital";
  2011. this.cbxHospital.ReadOnly = true;
  2012. this.cbxHospital.SelectedNode = null;
  2013. this.cbxHospital.Size = new System.Drawing.Size(97, 20);
  2014. this.cbxHospital.StrGetName = "";
  2015. this.cbxHospital.StrGetTagName = "";
  2016. this.cbxHospital.StrKey = null;
  2017. this.cbxHospital.TabIndex = 610;
  2018. //
  2019. // cbxCustomerGroups
  2020. //
  2021. this.cbxCustomerGroups.AfterSelectLevelFirstNode = true;
  2022. this.cbxCustomerGroups.DropDownHeight = 220;
  2023. this.cbxCustomerGroups.DropDownShow = false;
  2024. this.cbxCustomerGroups.FormattingEnabled = true;
  2025. this.cbxCustomerGroups.IntegralHeight = false;
  2026. this.cbxCustomerGroups.IsNodeMouseClick = true;
  2027. this.cbxCustomerGroups.IsSelectParentNode = false;
  2028. this.cbxCustomerGroups.Location = new System.Drawing.Point(321, 30);
  2029. this.cbxCustomerGroups.Name = "cbxCustomerGroups";
  2030. this.cbxCustomerGroups.ReadOnly = true;
  2031. this.cbxCustomerGroups.SelectedNode = null;
  2032. this.cbxCustomerGroups.Size = new System.Drawing.Size(97, 20);
  2033. this.cbxCustomerGroups.StrGetName = "";
  2034. this.cbxCustomerGroups.StrGetTagName = "";
  2035. this.cbxCustomerGroups.StrKey = null;
  2036. this.cbxCustomerGroups.TabIndex = 608;
  2037. //
  2038. // labelEx25
  2039. //
  2040. this.labelEx25.AutoSize = true;
  2041. this.labelEx25.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  2042. this.labelEx25.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  2043. this.labelEx25.Location = new System.Drawing.Point(492, 57);
  2044. this.labelEx25.Name = "labelEx25";
  2045. this.labelEx25.Size = new System.Drawing.Size(68, 17);
  2046. this.labelEx25.TabIndex = 614;
  2047. this.labelEx25.Text = "业务种类:";
  2048. //
  2049. // labelEx26
  2050. //
  2051. this.labelEx26.AutoSize = true;
  2052. this.labelEx26.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  2053. this.labelEx26.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  2054. this.labelEx26.Location = new System.Drawing.Point(492, 32);
  2055. this.labelEx26.Name = "labelEx26";
  2056. this.labelEx26.Size = new System.Drawing.Size(68, 17);
  2057. this.labelEx26.TabIndex = 615;
  2058. this.labelEx26.Text = "业务意向:";
  2059. //
  2060. // labelEx10
  2061. //
  2062. this.labelEx10.AutoSize = true;
  2063. this.labelEx10.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  2064. this.labelEx10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  2065. this.labelEx10.Location = new System.Drawing.Point(255, 57);
  2066. this.labelEx10.Name = "labelEx10";
  2067. this.labelEx10.Size = new System.Drawing.Size(68, 17);
  2068. this.labelEx10.TabIndex = 606;
  2069. this.labelEx10.Text = "客户区域:";
  2070. //
  2071. // labelEx7
  2072. //
  2073. this.labelEx7.AutoSize = true;
  2074. this.labelEx7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  2075. this.labelEx7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  2076. this.labelEx7.Location = new System.Drawing.Point(255, 32);
  2077. this.labelEx7.Name = "labelEx7";
  2078. this.labelEx7.Size = new System.Drawing.Size(68, 17);
  2079. this.labelEx7.TabIndex = 605;
  2080. this.labelEx7.Text = "客户类别:";
  2081. //
  2082. // labelEx24
  2083. //
  2084. this.labelEx24.AutoSize = true;
  2085. this.labelEx24.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  2086. this.labelEx24.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  2087. this.labelEx24.Location = new System.Drawing.Point(14, 57);
  2088. this.labelEx24.Name = "labelEx24";
  2089. this.labelEx24.Size = new System.Drawing.Size(68, 17);
  2090. this.labelEx24.TabIndex = 609;
  2091. this.labelEx24.Text = "来单医院:";
  2092. //
  2093. // labelEx11
  2094. //
  2095. this.labelEx11.AutoSize = true;
  2096. this.labelEx11.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  2097. this.labelEx11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  2098. this.labelEx11.Location = new System.Drawing.Point(38, 32);
  2099. this.labelEx11.Name = "labelEx11";
  2100. this.labelEx11.Size = new System.Drawing.Size(44, 17);
  2101. this.labelEx11.TabIndex = 607;
  2102. this.labelEx11.Text = "门市:";
  2103. //
  2104. // panelEx5
  2105. //
  2106. this.panelEx5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  2107. this.panelEx5.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  2108. this.panelEx5.BorderWidth = 1;
  2109. this.panelEx5.Controls.Add(this.cmbtreevLostStatus);
  2110. this.panelEx5.Controls.Add(this.labelEx53);
  2111. this.panelEx5.Location = new System.Drawing.Point(717, 55);
  2112. this.panelEx5.Name = "panelEx5";
  2113. this.panelEx5.Size = new System.Drawing.Size(186, 26);
  2114. this.panelEx5.TabIndex = 631;
  2115. this.panelEx5.Visible = false;
  2116. //
  2117. // cmbtreevLostStatus
  2118. //
  2119. this.cmbtreevLostStatus.AfterSelectLevelFirstNode = true;
  2120. this.cmbtreevLostStatus.DropDownHeight = 220;
  2121. this.cmbtreevLostStatus.DropDownShow = false;
  2122. this.cmbtreevLostStatus.FormattingEnabled = true;
  2123. this.cmbtreevLostStatus.IntegralHeight = false;
  2124. this.cmbtreevLostStatus.IsNodeMouseClick = true;
  2125. this.cmbtreevLostStatus.IsSelectParentNode = false;
  2126. this.cmbtreevLostStatus.Location = new System.Drawing.Point(78, 3);
  2127. this.cmbtreevLostStatus.Name = "cmbtreevLostStatus";
  2128. this.cmbtreevLostStatus.ReadOnly = true;
  2129. this.cmbtreevLostStatus.SelectedNode = null;
  2130. this.cmbtreevLostStatus.Size = new System.Drawing.Size(107, 20);
  2131. this.cmbtreevLostStatus.StrGetName = "";
  2132. this.cmbtreevLostStatus.StrGetTagName = "";
  2133. this.cmbtreevLostStatus.StrKey = null;
  2134. this.cmbtreevLostStatus.TabIndex = 524;
  2135. //
  2136. // labelEx53
  2137. //
  2138. this.labelEx53.AutoSize = true;
  2139. this.labelEx53.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  2140. this.labelEx53.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  2141. this.labelEx53.Location = new System.Drawing.Point(9, 4);
  2142. this.labelEx53.Name = "labelEx53";
  2143. this.labelEx53.Size = new System.Drawing.Size(68, 17);
  2144. this.labelEx53.TabIndex = 523;
  2145. this.labelEx53.Text = "成交状态:";
  2146. //
  2147. // labelEx28
  2148. //
  2149. this.labelEx28.AutoSize = true;
  2150. this.labelEx28.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  2151. this.labelEx28.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  2152. this.labelEx28.Location = new System.Drawing.Point(484, 34);
  2153. this.labelEx28.Name = "labelEx28";
  2154. this.labelEx28.Size = new System.Drawing.Size(13, 17);
  2155. this.labelEx28.TabIndex = 630;
  2156. this.labelEx28.Text = "*";
  2157. //
  2158. // labelEx27
  2159. //
  2160. this.labelEx27.AutoSize = true;
  2161. this.labelEx27.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  2162. this.labelEx27.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  2163. this.labelEx27.Location = new System.Drawing.Point(484, 59);
  2164. this.labelEx27.Name = "labelEx27";
  2165. this.labelEx27.Size = new System.Drawing.Size(13, 17);
  2166. this.labelEx27.TabIndex = 629;
  2167. this.labelEx27.Text = "*";
  2168. //
  2169. // labelEx45
  2170. //
  2171. this.labelEx45.AutoSize = true;
  2172. this.labelEx45.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  2173. this.labelEx45.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  2174. this.labelEx45.Location = new System.Drawing.Point(247, 59);
  2175. this.labelEx45.Name = "labelEx45";
  2176. this.labelEx45.Size = new System.Drawing.Size(13, 17);
  2177. this.labelEx45.TabIndex = 628;
  2178. this.labelEx45.Text = "*";
  2179. //
  2180. // labelEx44
  2181. //
  2182. this.labelEx44.AutoSize = true;
  2183. this.labelEx44.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  2184. this.labelEx44.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  2185. this.labelEx44.Location = new System.Drawing.Point(247, 34);
  2186. this.labelEx44.Name = "labelEx44";
  2187. this.labelEx44.Size = new System.Drawing.Size(13, 17);
  2188. this.labelEx44.TabIndex = 627;
  2189. this.labelEx44.Text = "*";
  2190. //
  2191. // labelEx43
  2192. //
  2193. this.labelEx43.AutoSize = true;
  2194. this.labelEx43.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  2195. this.labelEx43.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  2196. this.labelEx43.Location = new System.Drawing.Point(7, 59);
  2197. this.labelEx43.Name = "labelEx43";
  2198. this.labelEx43.Size = new System.Drawing.Size(13, 17);
  2199. this.labelEx43.TabIndex = 626;
  2200. this.labelEx43.Text = "*";
  2201. //
  2202. // labelEx41
  2203. //
  2204. this.labelEx41.AutoSize = true;
  2205. this.labelEx41.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  2206. this.labelEx41.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  2207. this.labelEx41.Location = new System.Drawing.Point(30, 34);
  2208. this.labelEx41.Name = "labelEx41";
  2209. this.labelEx41.Size = new System.Drawing.Size(13, 17);
  2210. this.labelEx41.TabIndex = 625;
  2211. this.labelEx41.Text = "*";
  2212. //
  2213. // labelEx33
  2214. //
  2215. this.labelEx33.AutoSize = true;
  2216. this.labelEx33.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
  2217. this.labelEx33.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  2218. this.labelEx33.Location = new System.Drawing.Point(4, 7);
  2219. this.labelEx33.Name = "labelEx33";
  2220. this.labelEx33.Size = new System.Drawing.Size(56, 17);
  2221. this.labelEx33.TabIndex = 622;
  2222. this.labelEx33.Text = "来单资料";
  2223. //
  2224. // buttonForm4
  2225. //
  2226. this.buttonForm4.BackColor = System.Drawing.Color.Transparent;
  2227. this.buttonForm4.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("buttonForm4.BackImg")));
  2228. this.buttonForm4.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  2229. this.buttonForm4.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  2230. this.buttonForm4.ForeColor = System.Drawing.Color.White;
  2231. this.buttonForm4.IsCustomBackImg = false;
  2232. this.buttonForm4.IsShowText = true;
  2233. this.buttonForm4.Location = new System.Drawing.Point(424, 56);
  2234. this.buttonForm4.Name = "buttonForm4";
  2235. this.buttonForm4.Size = new System.Drawing.Size(45, 22);
  2236. this.buttonForm4.TabIndex = 620;
  2237. this.buttonForm4.Text = " 设置";
  2238. this.buttonForm4.UseVisualStyleBackColor = false;
  2239. //
  2240. // buttonForm2
  2241. //
  2242. this.buttonForm2.BackColor = System.Drawing.Color.Transparent;
  2243. this.buttonForm2.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("buttonForm2.BackImg")));
  2244. this.buttonForm2.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  2245. this.buttonForm2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  2246. this.buttonForm2.ForeColor = System.Drawing.Color.White;
  2247. this.buttonForm2.IsCustomBackImg = false;
  2248. this.buttonForm2.IsShowText = true;
  2249. this.buttonForm2.Location = new System.Drawing.Point(661, 28);
  2250. this.buttonForm2.Name = "buttonForm2";
  2251. this.buttonForm2.Size = new System.Drawing.Size(51, 22);
  2252. this.buttonForm2.TabIndex = 618;
  2253. this.buttonForm2.Text = " 设置";
  2254. this.buttonForm2.UseVisualStyleBackColor = false;
  2255. //
  2256. // buttonForm3
  2257. //
  2258. this.buttonForm3.BackColor = System.Drawing.Color.Transparent;
  2259. this.buttonForm3.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("buttonForm3.BackImg")));
  2260. this.buttonForm3.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  2261. this.buttonForm3.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  2262. this.buttonForm3.ForeColor = System.Drawing.Color.White;
  2263. this.buttonForm3.IsCustomBackImg = false;
  2264. this.buttonForm3.IsShowText = true;
  2265. this.buttonForm3.Location = new System.Drawing.Point(661, 55);
  2266. this.buttonForm3.Name = "buttonForm3";
  2267. this.buttonForm3.Size = new System.Drawing.Size(51, 22);
  2268. this.buttonForm3.TabIndex = 619;
  2269. this.buttonForm3.Text = " 设置";
  2270. this.buttonForm3.UseVisualStyleBackColor = false;
  2271. //
  2272. // buttonForm1
  2273. //
  2274. this.buttonForm1.BackColor = System.Drawing.Color.Transparent;
  2275. this.buttonForm1.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("buttonForm1.BackImg")));
  2276. this.buttonForm1.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  2277. this.buttonForm1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  2278. this.buttonForm1.ForeColor = System.Drawing.Color.White;
  2279. this.buttonForm1.IsCustomBackImg = false;
  2280. this.buttonForm1.IsShowText = true;
  2281. this.buttonForm1.Location = new System.Drawing.Point(183, 55);
  2282. this.buttonForm1.Name = "buttonForm1";
  2283. this.buttonForm1.Size = new System.Drawing.Size(45, 22);
  2284. this.buttonForm1.TabIndex = 613;
  2285. this.buttonForm1.Text = " 设置";
  2286. this.buttonForm1.UseVisualStyleBackColor = false;
  2287. //
  2288. // butnSet2
  2289. //
  2290. this.butnSet2.BackColor = System.Drawing.Color.Transparent;
  2291. this.butnSet2.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("butnSet2.BackImg")));
  2292. this.butnSet2.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  2293. this.butnSet2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  2294. this.butnSet2.ForeColor = System.Drawing.Color.White;
  2295. this.butnSet2.IsCustomBackImg = false;
  2296. this.butnSet2.IsShowText = true;
  2297. this.butnSet2.Location = new System.Drawing.Point(424, 29);
  2298. this.butnSet2.Name = "butnSet2";
  2299. this.butnSet2.Size = new System.Drawing.Size(45, 22);
  2300. this.butnSet2.TabIndex = 612;
  2301. this.butnSet2.Text = " 设置";
  2302. this.butnSet2.UseVisualStyleBackColor = false;
  2303. //
  2304. // cbxMessage
  2305. //
  2306. this.cbxMessage.AutoSize = true;
  2307. this.cbxMessage.BackColor = System.Drawing.Color.Transparent;
  2308. this.cbxMessage.CurrentCheckState = LYFZ.ComponentLibrary.CheckStateEx.Unchecked;
  2309. this.cbxMessage.Font = new System.Drawing.Font("微软雅黑", 9F);
  2310. this.cbxMessage.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  2311. this.cbxMessage.Fourstates = false;
  2312. this.cbxMessage.IsGreenTick = false;
  2313. this.cbxMessage.Location = new System.Drawing.Point(80, 6);
  2314. this.cbxMessage.Name = "cbxMessage";
  2315. this.cbxMessage.Size = new System.Drawing.Size(99, 21);
  2316. this.cbxMessage.TabIndex = 611;
  2317. this.cbxMessage.Text = "发送来单短信";
  2318. this.cbxMessage.UseVisualStyleBackColor = false;
  2319. //
  2320. // labelEx37
  2321. //
  2322. this.labelEx37.AutoSize = true;
  2323. this.labelEx37.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  2324. this.labelEx37.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  2325. this.labelEx37.Location = new System.Drawing.Point(19, 66);
  2326. this.labelEx37.Name = "labelEx37";
  2327. this.labelEx37.Size = new System.Drawing.Size(68, 17);
  2328. this.labelEx37.TabIndex = 588;
  2329. this.labelEx37.Text = "老公姓名:";
  2330. //
  2331. // txtHusbandName
  2332. //
  2333. this.txtHusbandName.BackColor = System.Drawing.Color.Transparent;
  2334. this.txtHusbandName.Font = new System.Drawing.Font("微软雅黑", 9F);
  2335. this.txtHusbandName.Icon = null;
  2336. this.txtHusbandName.IconIsButton = false;
  2337. this.txtHusbandName.IsPasswordChat = '\0';
  2338. this.txtHusbandName.IsSystemPasswordChar = false;
  2339. this.txtHusbandName.Lines = new string[0];
  2340. this.txtHusbandName.Location = new System.Drawing.Point(83, 62);
  2341. this.txtHusbandName.Margin = new System.Windows.Forms.Padding(0);
  2342. this.txtHusbandName.MaxLength = 32767;
  2343. this.txtHusbandName.MinimumSize = new System.Drawing.Size(0, 26);
  2344. this.txtHusbandName.MouseBack = null;
  2345. this.txtHusbandName.Multiline = false;
  2346. this.txtHusbandName.Name = "txtHusbandName";
  2347. this.txtHusbandName.NormlBack = null;
  2348. this.txtHusbandName.Padding = new System.Windows.Forms.Padding(5);
  2349. this.txtHusbandName.ReadOnly = false;
  2350. this.txtHusbandName.ScrollBars = System.Windows.Forms.ScrollBars.None;
  2351. this.txtHusbandName.Size = new System.Drawing.Size(110, 26);
  2352. this.txtHusbandName.TabIndex = 589;
  2353. this.txtHusbandName.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  2354. this.txtHusbandName.WaterColor = System.Drawing.Color.DarkGray;
  2355. this.txtHusbandName.WaterText = "";
  2356. this.txtHusbandName.WordWrap = true;
  2357. //
  2358. // IntentionsEntered
  2359. //
  2360. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  2361. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  2362. this.BottomBgImage = ((System.Drawing.Bitmap)(resources.GetObject("$this.BottomBgImage")));
  2363. this.ClientSize = new System.Drawing.Size(920, 650);
  2364. this.CustomBorderStyles.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(63)))), ((int)(((byte)(109)))), ((int)(((byte)(139)))));
  2365. this.IsShowUcNavigationTool = true;
  2366. this.Name = "IntentionsEntered";
  2367. this.Text = "客户资料";
  2368. this.TitleBgImage = ((System.Drawing.Bitmap)(resources.GetObject("$this.TitleBgImage")));
  2369. this.Controls.SetChildIndex(this.btnAppFormMaximize, 0);
  2370. this.Controls.SetChildIndex(this.btnAppFormExit, 0);
  2371. this.Controls.SetChildIndex(this.btnAppFormMinimize, 0);
  2372. this.Controls.SetChildIndex(this.btnAppFormMenu, 0);
  2373. this.Controls.SetChildIndex(this.btnAppFormSkin, 0);
  2374. this.Controls.SetChildIndex(this.plFormMainContent, 0);
  2375. this.plExMainContainer.ResumeLayout(false);
  2376. this.plFormMainContent.ResumeLayout(false);
  2377. this.panelEx1.ResumeLayout(false);
  2378. this.panelEx2999.ResumeLayout(false);
  2379. this.panelEx7.ResumeLayout(false);
  2380. this.flowLayoutPanel1.ResumeLayout(false);
  2381. this.tabControlEx1.ResumeLayout(false);
  2382. this.tabPage1.ResumeLayout(false);
  2383. ((System.ComponentModel.ISupportInitialize)(this.dgvTrackRecord)).EndInit();
  2384. this.tabPage2.ResumeLayout(false);
  2385. ((System.ComponentModel.ISupportInitialize)(this.dgvData)).EndInit();
  2386. this.tabPage3.ResumeLayout(false);
  2387. this.tabPage4.ResumeLayout(false);
  2388. this.panelEx6.ResumeLayout(false);
  2389. this.panelEx6.PerformLayout();
  2390. this.panelEx4.ResumeLayout(false);
  2391. this.panelEx4.PerformLayout();
  2392. this.panelEx3.ResumeLayout(false);
  2393. this.panelEx3.PerformLayout();
  2394. this.panelLostRemark.ResumeLayout(false);
  2395. this.panelLostRemark.PerformLayout();
  2396. this.panelEx8.ResumeLayout(false);
  2397. this.panelEx8.PerformLayout();
  2398. this.panelEx2.ResumeLayout(false);
  2399. this.panelEx2.PerformLayout();
  2400. this.panelEx5.ResumeLayout(false);
  2401. this.panelEx5.PerformLayout();
  2402. this.ResumeLayout(false);
  2403. }
  2404. #endregion
  2405. private ComponentLibrary.PanelEx panelEx1;
  2406. private ComponentLibrary.PanelEx panelEx2999;
  2407. private ComponentLibrary.PanelEx panelEx7;
  2408. private ComponentLibrary.PanelEx panelEx6;
  2409. protected internal ComponentLibrary.PanelEx panelEx4;
  2410. public ComponentLibrary.ComboBoxTreeViewEx cbxFeeding;
  2411. public ComponentLibrary.TextBoxEx txtPregnantday;
  2412. protected internal ComponentLibrary.DateTimePickerEx dateExpectedDate;
  2413. private ComponentLibrary.LabelEx labelEx32;
  2414. private ComponentLibrary.LabelEx labelEx5;
  2415. private ComponentLibrary.LabelEx labelEx1;
  2416. private ComponentLibrary.LabelEx labelEx8;
  2417. private ComponentLibrary.LabelEx labelEx3;
  2418. protected internal ComponentLibrary.ButtonForm buttonForm5;
  2419. protected ComponentLibrary.MaskedTextBoxEx txtHusbandMobile;
  2420. protected ComponentLibrary.MaskedTextBoxEx txtCus_Telephone;
  2421. public ComponentLibrary.TextBoxEx txtName;
  2422. public ComponentLibrary.DateTimePickerEx datasingletime;
  2423. private ComponentLibrary.LabelEx labelEx55;
  2424. private ComponentLibrary.LabelEx labelEx49;
  2425. private ComponentLibrary.LabelEx labelEx30;
  2426. public ComponentLibrary.TextBoxEx txtHome;
  2427. public ComponentLibrary.TextBoxEx txtHusband;
  2428. public ComponentLibrary.TextBoxEx txtParents;
  2429. public ComponentLibrary.TextBoxEx txtRemark;
  2430. public ComponentLibrary.ButtonEx bntReset;
  2431. private ComponentLibrary.LabelEx labelEx54;
  2432. protected internal ComponentLibrary.ButtonQQ btnQQCall;
  2433. public ComponentLibrary.TextBoxEx txtQQ;
  2434. private ComponentLibrary.LabelEx labelEx51;
  2435. protected ComponentLibrary.ButtonTel buttonTel1;
  2436. private ComponentLibrary.LabelEx labelEx50;
  2437. private ComponentLibrary.LabelEx labelEx47;
  2438. protected internal ComponentLibrary.ButtonTel btnDial;
  2439. private ComponentLibrary.LabelEx labelEx29;
  2440. protected internal ComponentLibrary.PanelEx panelEx3;
  2441. protected ComponentLibrary.MaskedTextDateEx dateBabyBirthday;
  2442. private ComponentLibrary.LabelEx labelEx31;
  2443. private ComponentLibrary.LabelEx labelEx42;
  2444. protected internal ComponentLibrary.CheckBoxEx chkLunar;
  2445. public ComponentLibrary.RadioButtonEx radioButtonEx2;
  2446. public ComponentLibrary.RadioButtonEx radioButtonEx1;
  2447. public ComponentLibrary.TextBoxEx txtBabyName;
  2448. private ComponentLibrary.LabelEx labelEx2;
  2449. private ComponentLibrary.LabelEx labelEx4;
  2450. protected internal ComponentLibrary.CheckBoxEx cbxBabyProfile;
  2451. protected internal ComponentLibrary.CheckBoxEx cbxPregnant;
  2452. private ComponentLibrary.LabelEx labelEx35;
  2453. private ComponentLibrary.LabelEx labelEx34;
  2454. public ComponentLibrary.TextBoxEx txtParentsZip;
  2455. public ComponentLibrary.TextBoxEx txtHusbandZip;
  2456. public ComponentLibrary.TextBoxEx txtHomeZip;
  2457. private ComponentLibrary.LabelEx labelEx18;
  2458. private ComponentLibrary.LabelEx labelEx19;
  2459. private ComponentLibrary.LabelEx labelEx20;
  2460. private ComponentLibrary.LabelEx labelEx21;
  2461. private ComponentLibrary.LabelEx labelEx22;
  2462. private ComponentLibrary.LabelEx labelEx23;
  2463. public ComponentLibrary.TextBoxEx txtMaidenCalls;
  2464. public ComponentLibrary.TextBoxEx txtFamilyPhone;
  2465. private ComponentLibrary.LabelEx labelEx17;
  2466. public ComponentLibrary.TextBoxEx txtHomePhone;
  2467. private ComponentLibrary.LabelEx labelEx16;
  2468. private ComponentLibrary.LabelEx labelEx15;
  2469. public ComponentLibrary.ButtonEx btnSavedData;
  2470. public ComponentLibrary.ButtonEx btnclose;
  2471. private ComponentLibrary.LabelEx labelEx12;
  2472. private ComponentLibrary.LabelEx labelEx9;
  2473. protected internal ComponentLibrary.PanelEx panelLostRemark;
  2474. private ComponentLibrary.LabelEx labelEx13;
  2475. private ComponentLibrary.PanelEx panelEx8;
  2476. protected internal ComponentLibrary.PanelEx panelEx2;
  2477. protected internal ComponentLibrary.TextBoxEx txtsingle;
  2478. private ComponentLibrary.LabelEx labelEx6;
  2479. public ComponentLibrary.ComboBoxTreeViewEx cbxArea;
  2480. public ComponentLibrary.ComboBoxTreeViewEx cbxRetail;
  2481. public ComponentLibrary.ComboBoxTreeViewEx comboBoxTreeViewEx9;
  2482. protected internal ComponentLibrary.ComboBoxTreeViewEx cmbtreevBusinessIntent;
  2483. public ComponentLibrary.ComboBoxTreeViewEx cbxHospital;
  2484. public ComponentLibrary.ComboBoxTreeViewEx cbxCustomerGroups;
  2485. private ComponentLibrary.LabelEx labelEx25;
  2486. private ComponentLibrary.LabelEx labelEx26;
  2487. private ComponentLibrary.LabelEx labelEx10;
  2488. private ComponentLibrary.LabelEx labelEx7;
  2489. private ComponentLibrary.LabelEx labelEx24;
  2490. private ComponentLibrary.LabelEx labelEx11;
  2491. protected internal ComponentLibrary.PanelEx panelEx5;
  2492. private ComponentLibrary.LabelEx labelEx53;
  2493. private ComponentLibrary.LabelEx labelEx28;
  2494. private ComponentLibrary.LabelEx labelEx27;
  2495. private ComponentLibrary.LabelEx labelEx45;
  2496. private ComponentLibrary.LabelEx labelEx44;
  2497. private ComponentLibrary.LabelEx labelEx43;
  2498. private ComponentLibrary.LabelEx labelEx41;
  2499. private ComponentLibrary.LabelEx labelEx33;
  2500. protected internal ComponentLibrary.ButtonForm buttonForm4;
  2501. protected ComponentLibrary.ButtonForm buttonForm2;
  2502. protected internal ComponentLibrary.ButtonForm buttonForm3;
  2503. protected internal ComponentLibrary.ButtonForm buttonForm1;
  2504. protected internal ComponentLibrary.ButtonForm butnSet2;
  2505. protected ComponentLibrary.CheckBoxEx cbxMessage;
  2506. protected internal ComponentLibrary.TextBoxEx txtLostRemark;
  2507. protected internal ComponentLibrary.ComboBoxTreeViewEx cmbtreevLostStatus;
  2508. private ComponentLibrary.LabelEx labelEx14;
  2509. private System.Windows.Forms.TabPage tabPage1;
  2510. private System.Windows.Forms.TabPage tabPage2;
  2511. protected internal ComponentLibrary.DataGridViewEc dgvData;
  2512. private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
  2513. protected internal ComponentLibrary.ButtonEx btnUpdate;
  2514. protected internal ComponentLibrary.ButtonEx btnAddingSingle;
  2515. protected internal ComponentLibrary.DataGridViewEc dgvTrackRecord;
  2516. protected internal ComponentLibrary.TabControlEx tabControlEx1;
  2517. protected internal ComponentLibrary.ButtonEx btnPhotoExport;
  2518. protected internal ComponentLibrary.ButtonEx btnPhotoImport;
  2519. private System.Windows.Forms.TabPage tabPage3;
  2520. private System.Windows.Forms.TabPage tabPage4;
  2521. protected internal ComponentLibrary.ButtonEx btnDelete;
  2522. protected internal ComponentLibrary.ButtonEx btnAdding;
  2523. protected internal ComponentLibrary.ButtonEx btnAllPickup;
  2524. protected internal ComponentLibrary.ButtonEx btnAllCompleted;
  2525. protected internal ComponentLibrary.ButtonEx btnAllSendOut;
  2526. protected internal ComponentLibrary.ButtonEx btnProductToolbox;
  2527. protected internal ComponentLibrary.ListViewEx listViewData_Product;
  2528. protected internal ComponentLibrary.ListViewEx listViewData_Photo;
  2529. public ComponentLibrary.TextBoxEx txtText;
  2530. public ComponentLibrary.ComboBoxTreeViewEx cmbtreevText;
  2531. protected internal ComponentLibrary.LabelEx lblPrompt;
  2532. public ComponentLibrary.TextBoxEx txtHusbandName;
  2533. private ComponentLibrary.LabelEx labelEx37;
  2534. }
  2535. }