BasicData.designer.cs 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635
  1. namespace PTMedicalInsurance.Forms
  2. {
  3. partial class BasicData
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  29. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
  32. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
  33. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
  34. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
  35. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
  36. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
  37. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
  38. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
  39. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
  40. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
  41. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
  42. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
  43. this.tabControl1 = new System.Windows.Forms.TabControl();
  44. this.tabPage1 = new System.Windows.Forms.TabPage();
  45. this.panel1 = new System.Windows.Forms.Panel();
  46. this.dgvDirectoy = new Sunny.UI.UIDataGridView();
  47. this.cmsUpdateInsuDir = new Sunny.UI.UIContextMenuStrip();
  48. this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
  49. this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
  50. this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
  51. this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
  52. this.pgDownload = new Sunny.UI.UIPagination();
  53. this.panel2 = new System.Windows.Forms.Panel();
  54. this.rbgDirecType = new Sunny.UI.UIRadioButtonGroup();
  55. this.btnExit = new Sunny.UI.UIButton();
  56. this.cmsMapping = new Sunny.UI.UIContextMenuStrip();
  57. this.tsmiMapping = new System.Windows.Forms.ToolStripMenuItem();
  58. this.tsmiCancleMapping = new System.Windows.Forms.ToolStripMenuItem();
  59. this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
  60. this.ToolStripMenuItem_Upload = new System.Windows.Forms.ToolStripMenuItem();
  61. this.ToolStripMenuItem_CancelUpload = new System.Windows.Forms.ToolStripMenuItem();
  62. this.uiGroupBox3 = new Sunny.UI.UIGroupBox();
  63. this.TexYYMC = new Sunny.UI.UITextBox();
  64. this.TexBYSJL = new Sunny.UI.UITextBox();
  65. this.TexDQYS = new Sunny.UI.UITextBox();
  66. this.TexDate = new Sunny.UI.UITextBox();
  67. this.btEditDir = new Sunny.UI.UIButton();
  68. this.btAddDir = new Sunny.UI.UIButton();
  69. this.uiGroupBox5 = new Sunny.UI.UIGroupBox();
  70. this.tbDicType = new Sunny.UI.UITextBox();
  71. this.tbDicDate = new Sunny.UI.UITextBox();
  72. this.uiGroupBox2 = new Sunny.UI.UIGroupBox();
  73. this.tbDircetoryName = new Sunny.UI.UITextBox();
  74. this.tbDirectoryCode = new Sunny.UI.UITextBox();
  75. this.uiGroupBox1 = new Sunny.UI.UIGroupBox();
  76. this.rbAutoDown = new Sunny.UI.UIRadioButton();
  77. this.rbSingleDown = new Sunny.UI.UIRadioButton();
  78. this.tbVer = new Sunny.UI.UITextBox();
  79. this.btnQuery = new Sunny.UI.UIButton();
  80. this.btnDownload = new Sunny.UI.UIButton();
  81. this.uiProcessBar1 = new Sunny.UI.UIProcessBar();
  82. this.tabPage2 = new System.Windows.Forms.TabPage();
  83. this.panel7 = new System.Windows.Forms.Panel();
  84. this.uiSplitContainer1 = new Sunny.UI.UISplitContainer();
  85. this.panel3 = new System.Windows.Forms.Panel();
  86. this.dgvHISDirectory = new Sunny.UI.UIDataGridView();
  87. this.panel5 = new System.Windows.Forms.Panel();
  88. this.lblPage = new Sunny.UI.UILabel();
  89. this.lblPageOrder = new Sunny.UI.UILabel();
  90. this.numPage = new Sunny.UI.UITextBox();
  91. this.btnExport = new Sunny.UI.UIButton();
  92. this.btnCancelUpShip = new Sunny.UI.UIButton();
  93. this.btnUpShip = new Sunny.UI.UIButton();
  94. this.uiTextBox1 = new Sunny.UI.UITextBox();
  95. this.rbAll = new Sunny.UI.UIRadioButton();
  96. this.rbNoMaped = new Sunny.UI.UIRadioButton();
  97. this.rbMaped = new Sunny.UI.UIRadioButton();
  98. this.btnQueryHISDirectory = new Sunny.UI.UIButton();
  99. this.tbHISDirectoryFilter = new Sunny.UI.UITextBox();
  100. this.pgHISDirect = new Sunny.UI.UIPagination();
  101. this.LabExplain = new Sunny.UI.UILabel();
  102. this.panel4 = new System.Windows.Forms.Panel();
  103. this.dgvCenterDirectory = new Sunny.UI.UIDataGridView();
  104. this.panel6 = new System.Windows.Forms.Panel();
  105. this.tbManufacturer = new Sunny.UI.UITextBox();
  106. this.uiTextBox8 = new Sunny.UI.UITextBox();
  107. this.tbSpecifications = new Sunny.UI.UITextBox();
  108. this.uiTextBox6 = new Sunny.UI.UITextBox();
  109. this.tbDosageForm = new Sunny.UI.UITextBox();
  110. this.uiTextBox3 = new Sunny.UI.UITextBox();
  111. this.uiTextBox5 = new Sunny.UI.UITextBox();
  112. this.uiTextBox4 = new Sunny.UI.UITextBox();
  113. this.tbApprovalNO = new Sunny.UI.UITextBox();
  114. this.uiTextBox2 = new Sunny.UI.UITextBox();
  115. this.tbInsuCode = new Sunny.UI.UITextBox();
  116. this.btnQueryCenterDirectory = new Sunny.UI.UIButton();
  117. this.tbCenterDirectoryFilter = new Sunny.UI.UITextBox();
  118. this.pgCenterDirect = new Sunny.UI.UIPagination();
  119. this.uiButton1 = new Sunny.UI.UIButton();
  120. this.uiPanel3 = new Sunny.UI.UIPanel();
  121. this.rbgDirecType_C = new Sunny.UI.UIRadioButtonGroup();
  122. this.cmsUpdateAuxInfo = new Sunny.UI.UIContextMenuStrip();
  123. this.tsmiSingleUpdateAuxInfo = new System.Windows.Forms.ToolStripMenuItem();
  124. this.tsmiUpdateAllAuxInfo = new System.Windows.Forms.ToolStripMenuItem();
  125. this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
  126. this.tabControl1.SuspendLayout();
  127. this.tabPage1.SuspendLayout();
  128. this.panel1.SuspendLayout();
  129. ((System.ComponentModel.ISupportInitialize)(this.dgvDirectoy)).BeginInit();
  130. this.cmsUpdateInsuDir.SuspendLayout();
  131. this.panel2.SuspendLayout();
  132. this.cmsMapping.SuspendLayout();
  133. this.uiGroupBox3.SuspendLayout();
  134. this.uiGroupBox5.SuspendLayout();
  135. this.uiGroupBox2.SuspendLayout();
  136. this.uiGroupBox1.SuspendLayout();
  137. this.tabPage2.SuspendLayout();
  138. this.panel7.SuspendLayout();
  139. ((System.ComponentModel.ISupportInitialize)(this.uiSplitContainer1)).BeginInit();
  140. this.uiSplitContainer1.Panel1.SuspendLayout();
  141. this.uiSplitContainer1.Panel2.SuspendLayout();
  142. this.uiSplitContainer1.SuspendLayout();
  143. this.panel3.SuspendLayout();
  144. ((System.ComponentModel.ISupportInitialize)(this.dgvHISDirectory)).BeginInit();
  145. this.panel5.SuspendLayout();
  146. this.pgHISDirect.SuspendLayout();
  147. this.panel4.SuspendLayout();
  148. ((System.ComponentModel.ISupportInitialize)(this.dgvCenterDirectory)).BeginInit();
  149. this.panel6.SuspendLayout();
  150. this.tbManufacturer.SuspendLayout();
  151. this.tbSpecifications.SuspendLayout();
  152. this.tbDosageForm.SuspendLayout();
  153. this.uiTextBox3.SuspendLayout();
  154. this.tbApprovalNO.SuspendLayout();
  155. this.pgCenterDirect.SuspendLayout();
  156. this.uiPanel3.SuspendLayout();
  157. this.cmsUpdateAuxInfo.SuspendLayout();
  158. this.SuspendLayout();
  159. //
  160. // tabControl1
  161. //
  162. this.tabControl1.Controls.Add(this.tabPage1);
  163. this.tabControl1.Controls.Add(this.tabPage2);
  164. this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  165. this.tabControl1.Font = new System.Drawing.Font("华文隶书", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  166. this.tabControl1.Location = new System.Drawing.Point(0, 0);
  167. this.tabControl1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  168. this.tabControl1.Name = "tabControl1";
  169. this.tabControl1.SelectedIndex = 0;
  170. this.tabControl1.Size = new System.Drawing.Size(1378, 583);
  171. this.tabControl1.TabIndex = 0;
  172. //
  173. // tabPage1
  174. //
  175. this.tabPage1.Controls.Add(this.panel1);
  176. this.tabPage1.Location = new System.Drawing.Point(4, 31);
  177. this.tabPage1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  178. this.tabPage1.Name = "tabPage1";
  179. this.tabPage1.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
  180. this.tabPage1.Size = new System.Drawing.Size(1370, 548);
  181. this.tabPage1.TabIndex = 0;
  182. this.tabPage1.Text = "数据下载";
  183. this.tabPage1.UseVisualStyleBackColor = true;
  184. //
  185. // panel1
  186. //
  187. this.panel1.Controls.Add(this.dgvDirectoy);
  188. this.panel1.Controls.Add(this.pgDownload);
  189. this.panel1.Controls.Add(this.panel2);
  190. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  191. this.panel1.Location = new System.Drawing.Point(3, 2);
  192. this.panel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  193. this.panel1.Name = "panel1";
  194. this.panel1.Size = new System.Drawing.Size(1364, 544);
  195. this.panel1.TabIndex = 0;
  196. //
  197. // dgvDirectoy
  198. //
  199. this.dgvDirectoy.AllowUserToAddRows = false;
  200. this.dgvDirectoy.AllowUserToDeleteRows = false;
  201. dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  202. this.dgvDirectoy.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
  203. this.dgvDirectoy.BackgroundColor = System.Drawing.Color.White;
  204. this.dgvDirectoy.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  205. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  206. dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  207. dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  208. dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White;
  209. dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  210. dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  211. dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  212. this.dgvDirectoy.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
  213. this.dgvDirectoy.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  214. this.dgvDirectoy.ContextMenuStrip = this.cmsUpdateInsuDir;
  215. dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  216. dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window;
  217. dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  218. dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.ControlText;
  219. dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  220. dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  221. dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  222. this.dgvDirectoy.DefaultCellStyle = dataGridViewCellStyle3;
  223. this.dgvDirectoy.Dock = System.Windows.Forms.DockStyle.Fill;
  224. this.dgvDirectoy.EnableHeadersVisualStyles = false;
  225. this.dgvDirectoy.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  226. this.dgvDirectoy.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  227. this.dgvDirectoy.Location = new System.Drawing.Point(0, 0);
  228. this.dgvDirectoy.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  229. this.dgvDirectoy.Name = "dgvDirectoy";
  230. dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  231. dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  232. dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  233. dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  234. dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  235. dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.White;
  236. dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  237. this.dgvDirectoy.RowHeadersDefaultCellStyle = dataGridViewCellStyle4;
  238. this.dgvDirectoy.RowHeadersWidth = 51;
  239. dataGridViewCellStyle5.BackColor = System.Drawing.Color.White;
  240. dataGridViewCellStyle5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  241. this.dgvDirectoy.RowsDefaultCellStyle = dataGridViewCellStyle5;
  242. this.dgvDirectoy.RowTemplate.Height = 23;
  243. this.dgvDirectoy.SelectedIndex = -1;
  244. this.dgvDirectoy.Size = new System.Drawing.Size(1364, 264);
  245. this.dgvDirectoy.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  246. this.dgvDirectoy.TabIndex = 3;
  247. this.dgvDirectoy.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  248. this.dgvDirectoy.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dgvDirectoy_RowPostPaint);
  249. //
  250. // cmsUpdateInsuDir
  251. //
  252. this.cmsUpdateInsuDir.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  253. this.cmsUpdateInsuDir.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  254. this.cmsUpdateInsuDir.ImageScalingSize = new System.Drawing.Size(24, 24);
  255. this.cmsUpdateInsuDir.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  256. this.toolStripMenuItem1,
  257. this.toolStripMenuItem2,
  258. this.toolStripSeparator2,
  259. this.toolStripMenuItem3});
  260. this.cmsUpdateInsuDir.Name = "uiContextMenuStrip1";
  261. this.cmsUpdateInsuDir.Size = new System.Drawing.Size(289, 88);
  262. this.cmsUpdateInsuDir.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  263. //
  264. // toolStripMenuItem1
  265. //
  266. this.toolStripMenuItem1.Name = "toolStripMenuItem1";
  267. this.toolStripMenuItem1.Size = new System.Drawing.Size(288, 26);
  268. this.toolStripMenuItem1.Text = "医保目录信息查询";
  269. //
  270. // toolStripMenuItem2
  271. //
  272. this.toolStripMenuItem2.Name = "toolStripMenuItem2";
  273. this.toolStripMenuItem2.Size = new System.Drawing.Size(288, 26);
  274. this.toolStripMenuItem2.Text = "医保目录限价信息查询";
  275. //
  276. // toolStripSeparator2
  277. //
  278. this.toolStripSeparator2.Name = "toolStripSeparator2";
  279. this.toolStripSeparator2.Size = new System.Drawing.Size(285, 6);
  280. //
  281. // toolStripMenuItem3
  282. //
  283. this.toolStripMenuItem3.Name = "toolStripMenuItem3";
  284. this.toolStripMenuItem3.Size = new System.Drawing.Size(288, 26);
  285. this.toolStripMenuItem3.Text = "医保目录先自付比例信息查询";
  286. //
  287. // pgDownload
  288. //
  289. this.pgDownload.Dock = System.Windows.Forms.DockStyle.Bottom;
  290. this.pgDownload.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  291. this.pgDownload.Location = new System.Drawing.Point(0, 264);
  292. this.pgDownload.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
  293. this.pgDownload.MinimumSize = new System.Drawing.Size(2, 2);
  294. this.pgDownload.Name = "pgDownload";
  295. this.pgDownload.PagerCount = 13;
  296. this.pgDownload.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None;
  297. this.pgDownload.ShowJumpButton = false;
  298. this.pgDownload.ShowText = false;
  299. this.pgDownload.Size = new System.Drawing.Size(1364, 30);
  300. this.pgDownload.TabIndex = 2;
  301. this.pgDownload.Text = "uiPagination1";
  302. this.pgDownload.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  303. this.pgDownload.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  304. //
  305. // panel2
  306. //
  307. this.panel2.Controls.Add(this.rbgDirecType);
  308. this.panel2.Controls.Add(this.btnExit);
  309. this.panel2.Controls.Add(this.uiGroupBox3);
  310. this.panel2.Controls.Add(this.btEditDir);
  311. this.panel2.Controls.Add(this.btAddDir);
  312. this.panel2.Controls.Add(this.uiGroupBox5);
  313. this.panel2.Controls.Add(this.uiGroupBox2);
  314. this.panel2.Controls.Add(this.uiGroupBox1);
  315. this.panel2.Controls.Add(this.btnQuery);
  316. this.panel2.Controls.Add(this.btnDownload);
  317. this.panel2.Controls.Add(this.uiProcessBar1);
  318. this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
  319. this.panel2.Font = new System.Drawing.Font("华文隶书", 9.749999F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  320. this.panel2.Location = new System.Drawing.Point(0, 294);
  321. this.panel2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  322. this.panel2.Name = "panel2";
  323. this.panel2.Size = new System.Drawing.Size(1364, 250);
  324. this.panel2.TabIndex = 1;
  325. //
  326. // rbgDirecType
  327. //
  328. this.rbgDirecType.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  329. this.rbgDirecType.AutoSize = true;
  330. this.rbgDirecType.ColumnCount = 3;
  331. this.rbgDirecType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  332. this.rbgDirecType.Items.AddRange(new object[] {
  333. "药品",
  334. "诊疗",
  335. "材料",
  336. "疾病诊断",
  337. "手术",
  338. "门诊慢特病种",
  339. "按病种付费",
  340. "日间手术",
  341. "字典表",
  342. "中药饮片",
  343. "医疗机构制剂",
  344. "肿瘤形态学",
  345. "中医疾病",
  346. "中医证候",
  347. "民族药品",
  348. "目录信息查询",
  349. "医疗与医保目录匹配",
  350. "医药机构目录匹配",
  351. "医保目录限价",
  352. "医保目录先自付比例",
  353. "医药机构信息"});
  354. this.rbgDirecType.ItemSize = new System.Drawing.Size(150, 30);
  355. this.rbgDirecType.Location = new System.Drawing.Point(7, -8);
  356. this.rbgDirecType.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
  357. this.rbgDirecType.MinimumSize = new System.Drawing.Size(2, 2);
  358. this.rbgDirecType.Name = "rbgDirecType";
  359. this.rbgDirecType.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  360. this.rbgDirecType.Size = new System.Drawing.Size(480, 242);
  361. this.rbgDirecType.TabIndex = 24;
  362. this.rbgDirecType.Text = "请选择下载类型";
  363. this.rbgDirecType.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  364. this.rbgDirecType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  365. this.rbgDirecType.ValueChanged += new Sunny.UI.UIRadioButtonGroup.OnValueChanged(this.rbgDirecType_ValueChanged);
  366. //
  367. // btnExit
  368. //
  369. this.btnExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  370. this.btnExit.ContextMenuStrip = this.cmsMapping;
  371. this.btnExit.Cursor = System.Windows.Forms.Cursors.Hand;
  372. this.btnExit.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  373. this.btnExit.Location = new System.Drawing.Point(1206, 202);
  374. this.btnExit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  375. this.btnExit.MinimumSize = new System.Drawing.Size(2, 2);
  376. this.btnExit.Name = "btnExit";
  377. this.btnExit.Size = new System.Drawing.Size(142, 32);
  378. this.btnExit.TabIndex = 23;
  379. this.btnExit.Text = "退出";
  380. this.btnExit.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  381. this.btnExit.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  382. this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
  383. //
  384. // cmsMapping
  385. //
  386. this.cmsMapping.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  387. this.cmsMapping.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  388. this.cmsMapping.ImageScalingSize = new System.Drawing.Size(24, 24);
  389. this.cmsMapping.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  390. this.tsmiMapping,
  391. this.tsmiCancleMapping,
  392. this.toolStripSeparator1,
  393. this.ToolStripMenuItem_Upload,
  394. this.ToolStripMenuItem_CancelUpload});
  395. this.cmsMapping.Name = "uiContextMenuStrip1";
  396. this.cmsMapping.Size = new System.Drawing.Size(273, 114);
  397. this.cmsMapping.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  398. //
  399. // tsmiMapping
  400. //
  401. this.tsmiMapping.Name = "tsmiMapping";
  402. this.tsmiMapping.Size = new System.Drawing.Size(272, 26);
  403. this.tsmiMapping.Text = "对照";
  404. this.tsmiMapping.Click += new System.EventHandler(this.tsmiMapping_Click);
  405. //
  406. // tsmiCancleMapping
  407. //
  408. this.tsmiCancleMapping.Name = "tsmiCancleMapping";
  409. this.tsmiCancleMapping.Size = new System.Drawing.Size(272, 26);
  410. this.tsmiCancleMapping.Text = "取消对照";
  411. this.tsmiCancleMapping.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
  412. //
  413. // toolStripSeparator1
  414. //
  415. this.toolStripSeparator1.Name = "toolStripSeparator1";
  416. this.toolStripSeparator1.Size = new System.Drawing.Size(269, 6);
  417. //
  418. // ToolStripMenuItem_Upload
  419. //
  420. this.ToolStripMenuItem_Upload.Name = "ToolStripMenuItem_Upload";
  421. this.ToolStripMenuItem_Upload.Size = new System.Drawing.Size(272, 26);
  422. this.ToolStripMenuItem_Upload.Text = "单条目录对照关系上传";
  423. this.ToolStripMenuItem_Upload.Click += new System.EventHandler(this.ToolStripMenuItem_Upload_Click);
  424. //
  425. // ToolStripMenuItem_CancelUpload
  426. //
  427. this.ToolStripMenuItem_CancelUpload.Name = "ToolStripMenuItem_CancelUpload";
  428. this.ToolStripMenuItem_CancelUpload.Size = new System.Drawing.Size(272, 26);
  429. this.ToolStripMenuItem_CancelUpload.Text = "单条目录对照关系上传撤销";
  430. this.ToolStripMenuItem_CancelUpload.Click += new System.EventHandler(this.ToolStripMenuItem_CancelUpload_Click);
  431. //
  432. // uiGroupBox3
  433. //
  434. this.uiGroupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  435. this.uiGroupBox3.AutoSize = true;
  436. this.uiGroupBox3.Controls.Add(this.TexYYMC);
  437. this.uiGroupBox3.Controls.Add(this.TexBYSJL);
  438. this.uiGroupBox3.Controls.Add(this.TexDQYS);
  439. this.uiGroupBox3.Controls.Add(this.TexDate);
  440. this.uiGroupBox3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  441. this.uiGroupBox3.Location = new System.Drawing.Point(1042, 18);
  442. this.uiGroupBox3.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
  443. this.uiGroupBox3.MinimumSize = new System.Drawing.Size(2, 2);
  444. this.uiGroupBox3.Name = "uiGroupBox3";
  445. this.uiGroupBox3.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  446. this.uiGroupBox3.Size = new System.Drawing.Size(176, 216);
  447. this.uiGroupBox3.TabIndex = 22;
  448. this.uiGroupBox3.Text = "查询条件";
  449. this.uiGroupBox3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  450. this.uiGroupBox3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  451. //
  452. // TexYYMC
  453. //
  454. this.TexYYMC.AutoSize = true;
  455. this.TexYYMC.Cursor = System.Windows.Forms.Cursors.IBeam;
  456. this.TexYYMC.Font = new System.Drawing.Font("微软雅黑", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  457. this.TexYYMC.Location = new System.Drawing.Point(9, 150);
  458. this.TexYYMC.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  459. this.TexYYMC.MinimumSize = new System.Drawing.Size(1, 16);
  460. this.TexYYMC.Name = "TexYYMC";
  461. this.TexYYMC.ShowText = false;
  462. this.TexYYMC.Size = new System.Drawing.Size(158, 27);
  463. this.TexYYMC.TabIndex = 7;
  464. this.TexYYMC.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  465. this.TexYYMC.Watermark = "输入医院名称模糊查找";
  466. this.TexYYMC.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  467. //
  468. // TexBYSJL
  469. //
  470. this.TexBYSJL.AutoSize = true;
  471. this.TexBYSJL.Cursor = System.Windows.Forms.Cursors.IBeam;
  472. this.TexBYSJL.Font = new System.Drawing.Font("微软雅黑", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  473. this.TexBYSJL.Location = new System.Drawing.Point(9, 111);
  474. this.TexBYSJL.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  475. this.TexBYSJL.MinimumSize = new System.Drawing.Size(1, 16);
  476. this.TexBYSJL.Name = "TexBYSJL";
  477. this.TexBYSJL.ShowText = false;
  478. this.TexBYSJL.Size = new System.Drawing.Size(158, 27);
  479. this.TexBYSJL.TabIndex = 6;
  480. this.TexBYSJL.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  481. this.TexBYSJL.Watermark = "本页数据量";
  482. this.TexBYSJL.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  483. //
  484. // TexDQYS
  485. //
  486. this.TexDQYS.AutoSize = true;
  487. this.TexDQYS.Cursor = System.Windows.Forms.Cursors.IBeam;
  488. this.TexDQYS.Font = new System.Drawing.Font("微软雅黑", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  489. this.TexDQYS.Location = new System.Drawing.Point(9, 72);
  490. this.TexDQYS.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  491. this.TexDQYS.MinimumSize = new System.Drawing.Size(1, 16);
  492. this.TexDQYS.Name = "TexDQYS";
  493. this.TexDQYS.ShowText = false;
  494. this.TexDQYS.Size = new System.Drawing.Size(158, 27);
  495. this.TexDQYS.TabIndex = 5;
  496. this.TexDQYS.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  497. this.TexDQYS.Watermark = "当前页数";
  498. this.TexDQYS.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  499. //
  500. // TexDate
  501. //
  502. this.TexDate.AutoSize = true;
  503. this.TexDate.Cursor = System.Windows.Forms.Cursors.IBeam;
  504. this.TexDate.Font = new System.Drawing.Font("微软雅黑", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  505. this.TexDate.Location = new System.Drawing.Point(9, 33);
  506. this.TexDate.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  507. this.TexDate.MinimumSize = new System.Drawing.Size(1, 16);
  508. this.TexDate.Name = "TexDate";
  509. this.TexDate.ShowText = false;
  510. this.TexDate.Size = new System.Drawing.Size(158, 27);
  511. this.TexDate.TabIndex = 4;
  512. this.TexDate.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  513. this.TexDate.Watermark = "输入日期 2021-01-01";
  514. this.TexDate.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  515. //
  516. // btEditDir
  517. //
  518. this.btEditDir.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  519. this.btEditDir.ContextMenuStrip = this.cmsMapping;
  520. this.btEditDir.Cursor = System.Windows.Forms.Cursors.Hand;
  521. this.btEditDir.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  522. this.btEditDir.Location = new System.Drawing.Point(1280, 108);
  523. this.btEditDir.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  524. this.btEditDir.MinimumSize = new System.Drawing.Size(2, 2);
  525. this.btEditDir.Name = "btEditDir";
  526. this.btEditDir.Size = new System.Drawing.Size(67, 32);
  527. this.btEditDir.TabIndex = 19;
  528. this.btEditDir.Text = "修改";
  529. this.btEditDir.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  530. this.btEditDir.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  531. this.btEditDir.Click += new System.EventHandler(this.btEditDir_Click);
  532. //
  533. // btAddDir
  534. //
  535. this.btAddDir.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  536. this.btAddDir.ContextMenuStrip = this.cmsMapping;
  537. this.btAddDir.Cursor = System.Windows.Forms.Cursors.Hand;
  538. this.btAddDir.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  539. this.btAddDir.Location = new System.Drawing.Point(1280, 38);
  540. this.btAddDir.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  541. this.btAddDir.MinimumSize = new System.Drawing.Size(2, 2);
  542. this.btAddDir.Name = "btAddDir";
  543. this.btAddDir.Size = new System.Drawing.Size(67, 32);
  544. this.btAddDir.TabIndex = 18;
  545. this.btAddDir.Text = "新增";
  546. this.btAddDir.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  547. this.btAddDir.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  548. this.btAddDir.Click += new System.EventHandler(this.btAddDir_Click);
  549. //
  550. // uiGroupBox5
  551. //
  552. this.uiGroupBox5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  553. this.uiGroupBox5.AutoSize = true;
  554. this.uiGroupBox5.Controls.Add(this.tbDicType);
  555. this.uiGroupBox5.Controls.Add(this.tbDicDate);
  556. this.uiGroupBox5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  557. this.uiGroupBox5.Location = new System.Drawing.Point(688, -94);
  558. this.uiGroupBox5.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
  559. this.uiGroupBox5.MinimumSize = new System.Drawing.Size(2, 2);
  560. this.uiGroupBox5.Name = "uiGroupBox5";
  561. this.uiGroupBox5.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  562. this.uiGroupBox5.Size = new System.Drawing.Size(170, 290);
  563. this.uiGroupBox5.TabIndex = 17;
  564. this.uiGroupBox5.Text = "字典下载";
  565. this.uiGroupBox5.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  566. this.uiGroupBox5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  567. //
  568. // tbDicType
  569. //
  570. this.tbDicType.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  571. this.tbDicType.AutoSize = true;
  572. this.tbDicType.Cursor = System.Windows.Forms.Cursors.IBeam;
  573. this.tbDicType.Font = new System.Drawing.Font("微软雅黑", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  574. this.tbDicType.Location = new System.Drawing.Point(12, 181);
  575. this.tbDicType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  576. this.tbDicType.MinimumSize = new System.Drawing.Size(1, 16);
  577. this.tbDicType.Name = "tbDicType";
  578. this.tbDicType.ShowText = false;
  579. this.tbDicType.Size = new System.Drawing.Size(153, 27);
  580. this.tbDicType.TabIndex = 5;
  581. this.tbDicType.Text = "med_type";
  582. this.tbDicType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  583. this.tbDicType.Watermark = "med_type";
  584. this.tbDicType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  585. //
  586. // tbDicDate
  587. //
  588. this.tbDicDate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  589. this.tbDicDate.AutoSize = true;
  590. this.tbDicDate.Cursor = System.Windows.Forms.Cursors.IBeam;
  591. this.tbDicDate.Font = new System.Drawing.Font("微软雅黑", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  592. this.tbDicDate.Location = new System.Drawing.Point(13, 144);
  593. this.tbDicDate.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  594. this.tbDicDate.MinimumSize = new System.Drawing.Size(1, 16);
  595. this.tbDicDate.Name = "tbDicDate";
  596. this.tbDicDate.ShowText = false;
  597. this.tbDicDate.Size = new System.Drawing.Size(153, 27);
  598. this.tbDicDate.TabIndex = 4;
  599. this.tbDicDate.Text = "2021-01-01";
  600. this.tbDicDate.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  601. this.tbDicDate.Watermark = "2021-01-01";
  602. this.tbDicDate.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  603. //
  604. // uiGroupBox2
  605. //
  606. this.uiGroupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  607. this.uiGroupBox2.AutoSize = true;
  608. this.uiGroupBox2.Controls.Add(this.tbDircetoryName);
  609. this.uiGroupBox2.Controls.Add(this.tbDirectoryCode);
  610. this.uiGroupBox2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  611. this.uiGroupBox2.Location = new System.Drawing.Point(862, -94);
  612. this.uiGroupBox2.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
  613. this.uiGroupBox2.MinimumSize = new System.Drawing.Size(2, 2);
  614. this.uiGroupBox2.Name = "uiGroupBox2";
  615. this.uiGroupBox2.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  616. this.uiGroupBox2.Size = new System.Drawing.Size(175, 290);
  617. this.uiGroupBox2.TabIndex = 15;
  618. this.uiGroupBox2.Text = "查询";
  619. this.uiGroupBox2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  620. this.uiGroupBox2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  621. //
  622. // tbDircetoryName
  623. //
  624. this.tbDircetoryName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  625. this.tbDircetoryName.AutoSize = true;
  626. this.tbDircetoryName.Cursor = System.Windows.Forms.Cursors.IBeam;
  627. this.tbDircetoryName.Font = new System.Drawing.Font("微软雅黑", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  628. this.tbDircetoryName.Location = new System.Drawing.Point(11, 183);
  629. this.tbDircetoryName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  630. this.tbDircetoryName.MinimumSize = new System.Drawing.Size(1, 16);
  631. this.tbDircetoryName.Name = "tbDircetoryName";
  632. this.tbDircetoryName.ShowText = false;
  633. this.tbDircetoryName.Size = new System.Drawing.Size(156, 27);
  634. this.tbDircetoryName.TabIndex = 2;
  635. this.tbDircetoryName.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  636. this.tbDircetoryName.Watermark = "名称";
  637. this.tbDircetoryName.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  638. //
  639. // tbDirectoryCode
  640. //
  641. this.tbDirectoryCode.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  642. this.tbDirectoryCode.AutoSize = true;
  643. this.tbDirectoryCode.Cursor = System.Windows.Forms.Cursors.IBeam;
  644. this.tbDirectoryCode.Font = new System.Drawing.Font("微软雅黑", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  645. this.tbDirectoryCode.Location = new System.Drawing.Point(11, 144);
  646. this.tbDirectoryCode.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  647. this.tbDirectoryCode.MinimumSize = new System.Drawing.Size(1, 16);
  648. this.tbDirectoryCode.Name = "tbDirectoryCode";
  649. this.tbDirectoryCode.ShowText = false;
  650. this.tbDirectoryCode.Size = new System.Drawing.Size(156, 27);
  651. this.tbDirectoryCode.TabIndex = 1;
  652. this.tbDirectoryCode.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  653. this.tbDirectoryCode.Watermark = "编码";
  654. this.tbDirectoryCode.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  655. //
  656. // uiGroupBox1
  657. //
  658. this.uiGroupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  659. this.uiGroupBox1.AutoSize = true;
  660. this.uiGroupBox1.Controls.Add(this.rbAutoDown);
  661. this.uiGroupBox1.Controls.Add(this.rbSingleDown);
  662. this.uiGroupBox1.Controls.Add(this.tbVer);
  663. this.uiGroupBox1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  664. this.uiGroupBox1.Location = new System.Drawing.Point(492, -98);
  665. this.uiGroupBox1.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
  666. this.uiGroupBox1.MinimumSize = new System.Drawing.Size(2, 2);
  667. this.uiGroupBox1.Name = "uiGroupBox1";
  668. this.uiGroupBox1.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  669. this.uiGroupBox1.Size = new System.Drawing.Size(194, 294);
  670. this.uiGroupBox1.TabIndex = 14;
  671. this.uiGroupBox1.Text = "目录下载";
  672. this.uiGroupBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  673. this.uiGroupBox1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  674. //
  675. // rbAutoDown
  676. //
  677. this.rbAutoDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  678. this.rbAutoDown.Cursor = System.Windows.Forms.Cursors.Hand;
  679. this.rbAutoDown.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  680. this.rbAutoDown.Location = new System.Drawing.Point(15, 224);
  681. this.rbAutoDown.MinimumSize = new System.Drawing.Size(1, 1);
  682. this.rbAutoDown.Name = "rbAutoDown";
  683. this.rbAutoDown.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0);
  684. this.rbAutoDown.Size = new System.Drawing.Size(175, 25);
  685. this.rbAutoDown.TabIndex = 2;
  686. this.rbAutoDown.Text = "自动检索最大版本号";
  687. this.rbAutoDown.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  688. //
  689. // rbSingleDown
  690. //
  691. this.rbSingleDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  692. this.rbSingleDown.Cursor = System.Windows.Forms.Cursors.Hand;
  693. this.rbSingleDown.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  694. this.rbSingleDown.Location = new System.Drawing.Point(15, 191);
  695. this.rbSingleDown.MinimumSize = new System.Drawing.Size(1, 1);
  696. this.rbSingleDown.Name = "rbSingleDown";
  697. this.rbSingleDown.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0);
  698. this.rbSingleDown.Size = new System.Drawing.Size(141, 25);
  699. this.rbSingleDown.TabIndex = 1;
  700. this.rbSingleDown.Text = "手工输入版本号";
  701. this.rbSingleDown.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  702. this.rbSingleDown.CheckedChanged += new System.EventHandler(this.uiRadioButton1_CheckedChanged);
  703. //
  704. // tbVer
  705. //
  706. this.tbVer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  707. this.tbVer.AutoSize = true;
  708. this.tbVer.Cursor = System.Windows.Forms.Cursors.IBeam;
  709. this.tbVer.Font = new System.Drawing.Font("微软雅黑", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  710. this.tbVer.Location = new System.Drawing.Point(15, 145);
  711. this.tbVer.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  712. this.tbVer.MinimumSize = new System.Drawing.Size(1, 16);
  713. this.tbVer.Name = "tbVer";
  714. this.tbVer.ShowText = false;
  715. this.tbVer.Size = new System.Drawing.Size(147, 27);
  716. this.tbVer.TabIndex = 0;
  717. this.tbVer.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  718. this.tbVer.Watermark = "版本号";
  719. this.tbVer.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  720. //
  721. // btnQuery
  722. //
  723. this.btnQuery.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  724. this.btnQuery.ContextMenuStrip = this.cmsMapping;
  725. this.btnQuery.Cursor = System.Windows.Forms.Cursors.Hand;
  726. this.btnQuery.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  727. this.btnQuery.Location = new System.Drawing.Point(1206, 38);
  728. this.btnQuery.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  729. this.btnQuery.MinimumSize = new System.Drawing.Size(2, 2);
  730. this.btnQuery.Name = "btnQuery";
  731. this.btnQuery.Size = new System.Drawing.Size(67, 32);
  732. this.btnQuery.TabIndex = 13;
  733. this.btnQuery.Text = "查询";
  734. this.btnQuery.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  735. this.btnQuery.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  736. this.btnQuery.Click += new System.EventHandler(this.btnQuery_Click);
  737. //
  738. // btnDownload
  739. //
  740. this.btnDownload.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  741. this.btnDownload.ContextMenuStrip = this.cmsMapping;
  742. this.btnDownload.Cursor = System.Windows.Forms.Cursors.Hand;
  743. this.btnDownload.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  744. this.btnDownload.Location = new System.Drawing.Point(1206, 108);
  745. this.btnDownload.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  746. this.btnDownload.MinimumSize = new System.Drawing.Size(2, 2);
  747. this.btnDownload.Name = "btnDownload";
  748. this.btnDownload.Size = new System.Drawing.Size(67, 32);
  749. this.btnDownload.TabIndex = 12;
  750. this.btnDownload.Text = "下载";
  751. this.btnDownload.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  752. this.btnDownload.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  753. this.btnDownload.Click += new System.EventHandler(this.btnDownload_Click);
  754. //
  755. // uiProcessBar1
  756. //
  757. this.uiProcessBar1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  758. this.uiProcessBar1.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  759. this.uiProcessBar1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  760. this.uiProcessBar1.Location = new System.Drawing.Point(492, 204);
  761. this.uiProcessBar1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  762. this.uiProcessBar1.MinimumSize = new System.Drawing.Size(70, 2);
  763. this.uiProcessBar1.Name = "uiProcessBar1";
  764. this.uiProcessBar1.Size = new System.Drawing.Size(546, 30);
  765. this.uiProcessBar1.TabIndex = 11;
  766. this.uiProcessBar1.Text = "uiProcessBar1";
  767. this.uiProcessBar1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  768. //
  769. // tabPage2
  770. //
  771. this.tabPage2.Controls.Add(this.panel7);
  772. this.tabPage2.Controls.Add(this.uiPanel3);
  773. this.tabPage2.Location = new System.Drawing.Point(4, 31);
  774. this.tabPage2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  775. this.tabPage2.Name = "tabPage2";
  776. this.tabPage2.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
  777. this.tabPage2.Size = new System.Drawing.Size(1370, 548);
  778. this.tabPage2.TabIndex = 1;
  779. this.tabPage2.Text = "数据对照";
  780. this.tabPage2.UseVisualStyleBackColor = true;
  781. //
  782. // panel7
  783. //
  784. this.panel7.Controls.Add(this.uiSplitContainer1);
  785. this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
  786. this.panel7.Location = new System.Drawing.Point(181, 2);
  787. this.panel7.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  788. this.panel7.Name = "panel7";
  789. this.panel7.Size = new System.Drawing.Size(1186, 544);
  790. this.panel7.TabIndex = 3;
  791. //
  792. // uiSplitContainer1
  793. //
  794. this.uiSplitContainer1.Cursor = System.Windows.Forms.Cursors.Default;
  795. this.uiSplitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  796. this.uiSplitContainer1.Location = new System.Drawing.Point(0, 0);
  797. this.uiSplitContainer1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  798. this.uiSplitContainer1.MinimumSize = new System.Drawing.Size(20, 20);
  799. this.uiSplitContainer1.Name = "uiSplitContainer1";
  800. this.uiSplitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
  801. //
  802. // uiSplitContainer1.Panel1
  803. //
  804. this.uiSplitContainer1.Panel1.Controls.Add(this.panel3);
  805. this.uiSplitContainer1.Panel1MinSize = 0;
  806. //
  807. // uiSplitContainer1.Panel2
  808. //
  809. this.uiSplitContainer1.Panel2.Controls.Add(this.panel4);
  810. this.uiSplitContainer1.Size = new System.Drawing.Size(1186, 544);
  811. this.uiSplitContainer1.SplitterDistance = 273;
  812. this.uiSplitContainer1.SplitterWidth = 11;
  813. this.uiSplitContainer1.TabIndex = 3;
  814. this.uiSplitContainer1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  815. //
  816. // panel3
  817. //
  818. this.panel3.Controls.Add(this.dgvHISDirectory);
  819. this.panel3.Controls.Add(this.panel5);
  820. this.panel3.Controls.Add(this.pgHISDirect);
  821. this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
  822. this.panel3.Location = new System.Drawing.Point(0, 0);
  823. this.panel3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  824. this.panel3.Name = "panel3";
  825. this.panel3.Size = new System.Drawing.Size(1186, 273);
  826. this.panel3.TabIndex = 2;
  827. //
  828. // dgvHISDirectory
  829. //
  830. this.dgvHISDirectory.AllowUserToAddRows = false;
  831. this.dgvHISDirectory.AllowUserToDeleteRows = false;
  832. dataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  833. this.dgvHISDirectory.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle6;
  834. this.dgvHISDirectory.BackgroundColor = System.Drawing.Color.White;
  835. this.dgvHISDirectory.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  836. dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  837. dataGridViewCellStyle7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  838. dataGridViewCellStyle7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  839. dataGridViewCellStyle7.ForeColor = System.Drawing.Color.White;
  840. dataGridViewCellStyle7.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  841. dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  842. dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  843. this.dgvHISDirectory.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle7;
  844. this.dgvHISDirectory.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  845. this.dgvHISDirectory.ContextMenuStrip = this.cmsMapping;
  846. dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  847. dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Window;
  848. dataGridViewCellStyle8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  849. dataGridViewCellStyle8.ForeColor = System.Drawing.SystemColors.ControlText;
  850. dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  851. dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  852. dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  853. this.dgvHISDirectory.DefaultCellStyle = dataGridViewCellStyle8;
  854. this.dgvHISDirectory.Dock = System.Windows.Forms.DockStyle.Fill;
  855. this.dgvHISDirectory.EnableHeadersVisualStyles = false;
  856. this.dgvHISDirectory.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  857. this.dgvHISDirectory.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  858. this.dgvHISDirectory.Location = new System.Drawing.Point(0, 46);
  859. this.dgvHISDirectory.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  860. this.dgvHISDirectory.Name = "dgvHISDirectory";
  861. dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  862. dataGridViewCellStyle9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  863. dataGridViewCellStyle9.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  864. dataGridViewCellStyle9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  865. dataGridViewCellStyle9.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  866. dataGridViewCellStyle9.SelectionForeColor = System.Drawing.Color.White;
  867. dataGridViewCellStyle9.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  868. this.dgvHISDirectory.RowHeadersDefaultCellStyle = dataGridViewCellStyle9;
  869. this.dgvHISDirectory.RowHeadersWidth = 51;
  870. this.dgvHISDirectory.RowHeight = 25;
  871. dataGridViewCellStyle10.BackColor = System.Drawing.Color.White;
  872. dataGridViewCellStyle10.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  873. this.dgvHISDirectory.RowsDefaultCellStyle = dataGridViewCellStyle10;
  874. this.dgvHISDirectory.RowTemplate.Height = 25;
  875. this.dgvHISDirectory.SelectedIndex = -1;
  876. this.dgvHISDirectory.Size = new System.Drawing.Size(1186, 193);
  877. this.dgvHISDirectory.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  878. this.dgvHISDirectory.TabIndex = 4;
  879. this.dgvHISDirectory.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  880. this.dgvHISDirectory.RowStateChanged += new System.Windows.Forms.DataGridViewRowStateChangedEventHandler(this.dgvHISDirectory_RowStateChanged);
  881. this.dgvHISDirectory.DoubleClick += new System.EventHandler(this.dgvHISDirectory_DoubleClick);
  882. //
  883. // panel5
  884. //
  885. this.panel5.Controls.Add(this.lblPage);
  886. this.panel5.Controls.Add(this.lblPageOrder);
  887. this.panel5.Controls.Add(this.numPage);
  888. this.panel5.Controls.Add(this.btnExport);
  889. this.panel5.Controls.Add(this.btnCancelUpShip);
  890. this.panel5.Controls.Add(this.btnUpShip);
  891. this.panel5.Controls.Add(this.uiTextBox1);
  892. this.panel5.Controls.Add(this.rbAll);
  893. this.panel5.Controls.Add(this.rbNoMaped);
  894. this.panel5.Controls.Add(this.rbMaped);
  895. this.panel5.Controls.Add(this.btnQueryHISDirectory);
  896. this.panel5.Controls.Add(this.tbHISDirectoryFilter);
  897. this.panel5.Dock = System.Windows.Forms.DockStyle.Top;
  898. this.panel5.Location = new System.Drawing.Point(0, 0);
  899. this.panel5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  900. this.panel5.Name = "panel5";
  901. this.panel5.Size = new System.Drawing.Size(1186, 46);
  902. this.panel5.TabIndex = 1;
  903. //
  904. // lblPage
  905. //
  906. this.lblPage.AutoSize = true;
  907. this.lblPage.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  908. this.lblPage.Location = new System.Drawing.Point(776, 11);
  909. this.lblPage.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  910. this.lblPage.Name = "lblPage";
  911. this.lblPage.Size = new System.Drawing.Size(20, 17);
  912. this.lblPage.TabIndex = 15;
  913. this.lblPage.Text = "页";
  914. this.lblPage.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  915. this.lblPage.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  916. //
  917. // lblPageOrder
  918. //
  919. this.lblPageOrder.AutoSize = true;
  920. this.lblPageOrder.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  921. this.lblPageOrder.Location = new System.Drawing.Point(716, 11);
  922. this.lblPageOrder.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  923. this.lblPageOrder.Name = "lblPageOrder";
  924. this.lblPageOrder.Size = new System.Drawing.Size(20, 17);
  925. this.lblPageOrder.TabIndex = 15;
  926. this.lblPageOrder.Text = "第";
  927. this.lblPageOrder.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  928. this.lblPageOrder.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  929. //
  930. // numPage
  931. //
  932. this.numPage.Cursor = System.Windows.Forms.Cursors.IBeam;
  933. this.numPage.DoubleValue = 1D;
  934. this.numPage.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  935. this.numPage.IntValue = 1;
  936. this.numPage.Location = new System.Drawing.Point(736, 9);
  937. this.numPage.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  938. this.numPage.MinimumSize = new System.Drawing.Size(1, 13);
  939. this.numPage.Name = "numPage";
  940. this.numPage.ShowText = false;
  941. this.numPage.Size = new System.Drawing.Size(38, 22);
  942. this.numPage.TabIndex = 14;
  943. this.numPage.Text = "1";
  944. this.numPage.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  945. this.numPage.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  946. //
  947. // btnExport
  948. //
  949. this.btnExport.Cursor = System.Windows.Forms.Cursors.Hand;
  950. this.btnExport.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  951. this.btnExport.Location = new System.Drawing.Point(820, 8);
  952. this.btnExport.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  953. this.btnExport.MinimumSize = new System.Drawing.Size(2, 2);
  954. this.btnExport.Name = "btnExport";
  955. this.btnExport.Size = new System.Drawing.Size(100, 28);
  956. this.btnExport.TabIndex = 13;
  957. this.btnExport.Text = "导 出";
  958. this.btnExport.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  959. this.btnExport.Visible = false;
  960. this.btnExport.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  961. this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
  962. //
  963. // btnCancelUpShip
  964. //
  965. this.btnCancelUpShip.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  966. this.btnCancelUpShip.Cursor = System.Windows.Forms.Cursors.Hand;
  967. this.btnCancelUpShip.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  968. this.btnCancelUpShip.Location = new System.Drawing.Point(1038, 8);
  969. this.btnCancelUpShip.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  970. this.btnCancelUpShip.MinimumSize = new System.Drawing.Size(2, 2);
  971. this.btnCancelUpShip.Name = "btnCancelUpShip";
  972. this.btnCancelUpShip.Size = new System.Drawing.Size(140, 28);
  973. this.btnCancelUpShip.TabIndex = 11;
  974. this.btnCancelUpShip.Text = "撤销目录对照上传";
  975. this.btnCancelUpShip.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  976. this.btnCancelUpShip.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  977. this.btnCancelUpShip.Click += new System.EventHandler(this.btnCancelUpShip_Click);
  978. //
  979. // btnUpShip
  980. //
  981. this.btnUpShip.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  982. this.btnUpShip.Cursor = System.Windows.Forms.Cursors.Hand;
  983. this.btnUpShip.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  984. this.btnUpShip.Location = new System.Drawing.Point(924, 8);
  985. this.btnUpShip.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  986. this.btnUpShip.MinimumSize = new System.Drawing.Size(2, 2);
  987. this.btnUpShip.Name = "btnUpShip";
  988. this.btnUpShip.Size = new System.Drawing.Size(110, 28);
  989. this.btnUpShip.TabIndex = 10;
  990. this.btnUpShip.Text = "目录对照上传";
  991. this.btnUpShip.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  992. this.btnUpShip.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  993. this.btnUpShip.Click += new System.EventHandler(this.btnUpShip_Click);
  994. //
  995. // uiTextBox1
  996. //
  997. this.uiTextBox1.Cursor = System.Windows.Forms.Cursors.IBeam;
  998. this.uiTextBox1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  999. this.uiTextBox1.Location = new System.Drawing.Point(334, 8);
  1000. this.uiTextBox1.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
  1001. this.uiTextBox1.MinimumSize = new System.Drawing.Size(2, 16);
  1002. this.uiTextBox1.Name = "uiTextBox1";
  1003. this.uiTextBox1.ShowText = false;
  1004. this.uiTextBox1.Size = new System.Drawing.Size(150, 30);
  1005. this.uiTextBox1.TabIndex = 9;
  1006. this.uiTextBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1007. this.uiTextBox1.Watermark = "已对照医保名称/编码";
  1008. this.uiTextBox1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1009. //
  1010. // rbAll
  1011. //
  1012. this.rbAll.Cursor = System.Windows.Forms.Cursors.Hand;
  1013. this.rbAll.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1014. this.rbAll.Location = new System.Drawing.Point(501, 10);
  1015. this.rbAll.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1016. this.rbAll.MinimumSize = new System.Drawing.Size(2, 2);
  1017. this.rbAll.Name = "rbAll";
  1018. this.rbAll.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0);
  1019. this.rbAll.Size = new System.Drawing.Size(63, 22);
  1020. this.rbAll.TabIndex = 8;
  1021. this.rbAll.Text = "全部";
  1022. this.rbAll.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1023. this.rbAll.ValueChanged += new Sunny.UI.UIRadioButton.OnValueChanged(this.rbAll_ValueChanged);
  1024. //
  1025. // rbNoMaped
  1026. //
  1027. this.rbNoMaped.Cursor = System.Windows.Forms.Cursors.Hand;
  1028. this.rbNoMaped.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1029. this.rbNoMaped.Location = new System.Drawing.Point(650, 10);
  1030. this.rbNoMaped.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1031. this.rbNoMaped.MinimumSize = new System.Drawing.Size(2, 2);
  1032. this.rbNoMaped.Name = "rbNoMaped";
  1033. this.rbNoMaped.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0);
  1034. this.rbNoMaped.Size = new System.Drawing.Size(63, 22);
  1035. this.rbNoMaped.TabIndex = 7;
  1036. this.rbNoMaped.Text = "未对照";
  1037. this.rbNoMaped.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1038. this.rbNoMaped.CheckedChanged += new System.EventHandler(this.rbNoMaped_CheckedChanged);
  1039. //
  1040. // rbMaped
  1041. //
  1042. this.rbMaped.Cursor = System.Windows.Forms.Cursors.Hand;
  1043. this.rbMaped.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1044. this.rbMaped.Location = new System.Drawing.Point(574, 10);
  1045. this.rbMaped.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1046. this.rbMaped.MinimumSize = new System.Drawing.Size(2, 2);
  1047. this.rbMaped.Name = "rbMaped";
  1048. this.rbMaped.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0);
  1049. this.rbMaped.Size = new System.Drawing.Size(63, 22);
  1050. this.rbMaped.TabIndex = 6;
  1051. this.rbMaped.Text = "已对照";
  1052. this.rbMaped.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1053. this.rbMaped.CheckedChanged += new System.EventHandler(this.rbMaped_CheckedChanged);
  1054. //
  1055. // btnQueryHISDirectory
  1056. //
  1057. this.btnQueryHISDirectory.Cursor = System.Windows.Forms.Cursors.Hand;
  1058. this.btnQueryHISDirectory.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1059. this.btnQueryHISDirectory.Location = new System.Drawing.Point(10, 6);
  1060. this.btnQueryHISDirectory.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1061. this.btnQueryHISDirectory.MinimumSize = new System.Drawing.Size(2, 2);
  1062. this.btnQueryHISDirectory.Name = "btnQueryHISDirectory";
  1063. this.btnQueryHISDirectory.Size = new System.Drawing.Size(150, 28);
  1064. this.btnQueryHISDirectory.TabIndex = 5;
  1065. this.btnQueryHISDirectory.Text = "查询HIS目录";
  1066. this.btnQueryHISDirectory.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1067. this.btnQueryHISDirectory.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1068. this.btnQueryHISDirectory.Click += new System.EventHandler(this.btnQueryHISDirectory_Click);
  1069. //
  1070. // tbHISDirectoryFilter
  1071. //
  1072. this.tbHISDirectoryFilter.Cursor = System.Windows.Forms.Cursors.IBeam;
  1073. this.tbHISDirectoryFilter.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1074. this.tbHISDirectoryFilter.Location = new System.Drawing.Point(174, 8);
  1075. this.tbHISDirectoryFilter.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
  1076. this.tbHISDirectoryFilter.MinimumSize = new System.Drawing.Size(2, 16);
  1077. this.tbHISDirectoryFilter.Name = "tbHISDirectoryFilter";
  1078. this.tbHISDirectoryFilter.ShowText = false;
  1079. this.tbHISDirectoryFilter.Size = new System.Drawing.Size(150, 30);
  1080. this.tbHISDirectoryFilter.TabIndex = 4;
  1081. this.tbHISDirectoryFilter.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1082. this.tbHISDirectoryFilter.Watermark = "HIS名称/编码";
  1083. this.tbHISDirectoryFilter.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1084. //
  1085. // pgHISDirect
  1086. //
  1087. this.pgHISDirect.Controls.Add(this.LabExplain);
  1088. this.pgHISDirect.Dock = System.Windows.Forms.DockStyle.Bottom;
  1089. this.pgHISDirect.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1090. this.pgHISDirect.Location = new System.Drawing.Point(0, 239);
  1091. this.pgHISDirect.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
  1092. this.pgHISDirect.MinimumSize = new System.Drawing.Size(2, 2);
  1093. this.pgHISDirect.Name = "pgHISDirect";
  1094. this.pgHISDirect.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None;
  1095. this.pgHISDirect.ShowJumpButton = false;
  1096. this.pgHISDirect.ShowText = false;
  1097. this.pgHISDirect.Size = new System.Drawing.Size(1186, 34);
  1098. this.pgHISDirect.TabIndex = 6;
  1099. this.pgHISDirect.Text = "uiPagination2";
  1100. this.pgHISDirect.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1101. this.pgHISDirect.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1102. this.pgHISDirect.PageChanged += new Sunny.UI.UIPagination.OnPageChangeEventHandler(this.pgHISDirect_PageChanged);
  1103. //
  1104. // LabExplain
  1105. //
  1106. this.LabExplain.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  1107. | System.Windows.Forms.AnchorStyles.Right)));
  1108. this.LabExplain.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1109. this.LabExplain.Location = new System.Drawing.Point(741, 3);
  1110. this.LabExplain.Name = "LabExplain";
  1111. this.LabExplain.Size = new System.Drawing.Size(414, 30);
  1112. this.LabExplain.TabIndex = 26;
  1113. this.LabExplain.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1114. this.LabExplain.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1115. //
  1116. // panel4
  1117. //
  1118. this.panel4.Controls.Add(this.dgvCenterDirectory);
  1119. this.panel4.Controls.Add(this.panel6);
  1120. this.panel4.Controls.Add(this.pgCenterDirect);
  1121. this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
  1122. this.panel4.Location = new System.Drawing.Point(0, 0);
  1123. this.panel4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1124. this.panel4.Name = "panel4";
  1125. this.panel4.Size = new System.Drawing.Size(1186, 260);
  1126. this.panel4.TabIndex = 3;
  1127. //
  1128. // dgvCenterDirectory
  1129. //
  1130. this.dgvCenterDirectory.AllowUserToAddRows = false;
  1131. this.dgvCenterDirectory.AllowUserToDeleteRows = false;
  1132. dataGridViewCellStyle11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1133. this.dgvCenterDirectory.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle11;
  1134. this.dgvCenterDirectory.BackgroundColor = System.Drawing.Color.White;
  1135. this.dgvCenterDirectory.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1136. dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1137. dataGridViewCellStyle12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1138. dataGridViewCellStyle12.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1139. dataGridViewCellStyle12.ForeColor = System.Drawing.Color.White;
  1140. dataGridViewCellStyle12.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1141. dataGridViewCellStyle12.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1142. dataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1143. this.dgvCenterDirectory.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle12;
  1144. this.dgvCenterDirectory.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1145. dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1146. dataGridViewCellStyle13.BackColor = System.Drawing.SystemColors.Window;
  1147. dataGridViewCellStyle13.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1148. dataGridViewCellStyle13.ForeColor = System.Drawing.SystemColors.ControlText;
  1149. dataGridViewCellStyle13.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1150. dataGridViewCellStyle13.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1151. dataGridViewCellStyle13.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1152. this.dgvCenterDirectory.DefaultCellStyle = dataGridViewCellStyle13;
  1153. this.dgvCenterDirectory.Dock = System.Windows.Forms.DockStyle.Fill;
  1154. this.dgvCenterDirectory.EnableHeadersVisualStyles = false;
  1155. this.dgvCenterDirectory.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1156. this.dgvCenterDirectory.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1157. this.dgvCenterDirectory.Location = new System.Drawing.Point(0, 40);
  1158. this.dgvCenterDirectory.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1159. this.dgvCenterDirectory.Name = "dgvCenterDirectory";
  1160. dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1161. dataGridViewCellStyle14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1162. dataGridViewCellStyle14.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1163. dataGridViewCellStyle14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1164. dataGridViewCellStyle14.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1165. dataGridViewCellStyle14.SelectionForeColor = System.Drawing.Color.White;
  1166. dataGridViewCellStyle14.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1167. this.dgvCenterDirectory.RowHeadersDefaultCellStyle = dataGridViewCellStyle14;
  1168. this.dgvCenterDirectory.RowHeadersWidth = 51;
  1169. dataGridViewCellStyle15.BackColor = System.Drawing.Color.White;
  1170. dataGridViewCellStyle15.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1171. this.dgvCenterDirectory.RowsDefaultCellStyle = dataGridViewCellStyle15;
  1172. this.dgvCenterDirectory.RowTemplate.Height = 23;
  1173. this.dgvCenterDirectory.SelectedIndex = -1;
  1174. this.dgvCenterDirectory.Size = new System.Drawing.Size(1186, 186);
  1175. this.dgvCenterDirectory.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1176. this.dgvCenterDirectory.TabIndex = 3;
  1177. this.dgvCenterDirectory.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1178. this.dgvCenterDirectory.RowStateChanged += new System.Windows.Forms.DataGridViewRowStateChangedEventHandler(this.dgvCenterDirectory_RowStateChanged);
  1179. //
  1180. // panel6
  1181. //
  1182. this.panel6.Controls.Add(this.tbManufacturer);
  1183. this.panel6.Controls.Add(this.tbSpecifications);
  1184. this.panel6.Controls.Add(this.tbDosageForm);
  1185. this.panel6.Controls.Add(this.tbApprovalNO);
  1186. this.panel6.Controls.Add(this.tbInsuCode);
  1187. this.panel6.Controls.Add(this.btnQueryCenterDirectory);
  1188. this.panel6.Controls.Add(this.tbCenterDirectoryFilter);
  1189. this.panel6.Dock = System.Windows.Forms.DockStyle.Top;
  1190. this.panel6.Location = new System.Drawing.Point(0, 0);
  1191. this.panel6.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1192. this.panel6.Name = "panel6";
  1193. this.panel6.Size = new System.Drawing.Size(1186, 40);
  1194. this.panel6.TabIndex = 2;
  1195. //
  1196. // tbManufacturer
  1197. //
  1198. this.tbManufacturer.Controls.Add(this.uiTextBox8);
  1199. this.tbManufacturer.Cursor = System.Windows.Forms.Cursors.IBeam;
  1200. this.tbManufacturer.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1201. this.tbManufacturer.Location = new System.Drawing.Point(776, 6);
  1202. this.tbManufacturer.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
  1203. this.tbManufacturer.MinimumSize = new System.Drawing.Size(2, 16);
  1204. this.tbManufacturer.Name = "tbManufacturer";
  1205. this.tbManufacturer.ShowText = false;
  1206. this.tbManufacturer.Size = new System.Drawing.Size(147, 30);
  1207. this.tbManufacturer.TabIndex = 13;
  1208. this.tbManufacturer.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1209. this.tbManufacturer.Watermark = "生产厂家";
  1210. this.tbManufacturer.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1211. //
  1212. // uiTextBox8
  1213. //
  1214. this.uiTextBox8.Cursor = System.Windows.Forms.Cursors.IBeam;
  1215. this.uiTextBox8.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1216. this.uiTextBox8.Location = new System.Drawing.Point(146, 1);
  1217. this.uiTextBox8.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1218. this.uiTextBox8.MinimumSize = new System.Drawing.Size(1, 16);
  1219. this.uiTextBox8.Name = "uiTextBox8";
  1220. this.uiTextBox8.ShowText = false;
  1221. this.uiTextBox8.Size = new System.Drawing.Size(126, 30);
  1222. this.uiTextBox8.TabIndex = 11;
  1223. this.uiTextBox8.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1224. this.uiTextBox8.Watermark = "批准文号";
  1225. this.uiTextBox8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1226. //
  1227. // tbSpecifications
  1228. //
  1229. this.tbSpecifications.Controls.Add(this.uiTextBox6);
  1230. this.tbSpecifications.Cursor = System.Windows.Forms.Cursors.IBeam;
  1231. this.tbSpecifications.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1232. this.tbSpecifications.Location = new System.Drawing.Point(926, 6);
  1233. this.tbSpecifications.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
  1234. this.tbSpecifications.MinimumSize = new System.Drawing.Size(2, 16);
  1235. this.tbSpecifications.Name = "tbSpecifications";
  1236. this.tbSpecifications.ShowText = false;
  1237. this.tbSpecifications.Size = new System.Drawing.Size(123, 30);
  1238. this.tbSpecifications.TabIndex = 12;
  1239. this.tbSpecifications.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1240. this.tbSpecifications.Watermark = "规格";
  1241. this.tbSpecifications.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1242. //
  1243. // uiTextBox6
  1244. //
  1245. this.uiTextBox6.Cursor = System.Windows.Forms.Cursors.IBeam;
  1246. this.uiTextBox6.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1247. this.uiTextBox6.Location = new System.Drawing.Point(146, 1);
  1248. this.uiTextBox6.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1249. this.uiTextBox6.MinimumSize = new System.Drawing.Size(1, 16);
  1250. this.uiTextBox6.Name = "uiTextBox6";
  1251. this.uiTextBox6.ShowText = false;
  1252. this.uiTextBox6.Size = new System.Drawing.Size(126, 30);
  1253. this.uiTextBox6.TabIndex = 11;
  1254. this.uiTextBox6.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1255. this.uiTextBox6.Watermark = "批准文号";
  1256. this.uiTextBox6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1257. //
  1258. // tbDosageForm
  1259. //
  1260. this.tbDosageForm.Controls.Add(this.uiTextBox3);
  1261. this.tbDosageForm.Controls.Add(this.uiTextBox4);
  1262. this.tbDosageForm.Cursor = System.Windows.Forms.Cursors.IBeam;
  1263. this.tbDosageForm.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1264. this.tbDosageForm.Location = new System.Drawing.Point(648, 6);
  1265. this.tbDosageForm.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
  1266. this.tbDosageForm.MinimumSize = new System.Drawing.Size(2, 16);
  1267. this.tbDosageForm.Name = "tbDosageForm";
  1268. this.tbDosageForm.ShowText = false;
  1269. this.tbDosageForm.Size = new System.Drawing.Size(126, 30);
  1270. this.tbDosageForm.TabIndex = 11;
  1271. this.tbDosageForm.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1272. this.tbDosageForm.Watermark = "剂型名称";
  1273. this.tbDosageForm.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1274. //
  1275. // uiTextBox3
  1276. //
  1277. this.uiTextBox3.Controls.Add(this.uiTextBox5);
  1278. this.uiTextBox3.Cursor = System.Windows.Forms.Cursors.IBeam;
  1279. this.uiTextBox3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1280. this.uiTextBox3.Location = new System.Drawing.Point(134, 1);
  1281. this.uiTextBox3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1282. this.uiTextBox3.MinimumSize = new System.Drawing.Size(1, 16);
  1283. this.uiTextBox3.Name = "uiTextBox3";
  1284. this.uiTextBox3.ShowText = false;
  1285. this.uiTextBox3.Size = new System.Drawing.Size(123, 30);
  1286. this.uiTextBox3.TabIndex = 13;
  1287. this.uiTextBox3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1288. this.uiTextBox3.Watermark = "规格";
  1289. this.uiTextBox3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1290. //
  1291. // uiTextBox5
  1292. //
  1293. this.uiTextBox5.Cursor = System.Windows.Forms.Cursors.IBeam;
  1294. this.uiTextBox5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1295. this.uiTextBox5.Location = new System.Drawing.Point(146, 1);
  1296. this.uiTextBox5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1297. this.uiTextBox5.MinimumSize = new System.Drawing.Size(1, 16);
  1298. this.uiTextBox5.Name = "uiTextBox5";
  1299. this.uiTextBox5.ShowText = false;
  1300. this.uiTextBox5.Size = new System.Drawing.Size(126, 30);
  1301. this.uiTextBox5.TabIndex = 11;
  1302. this.uiTextBox5.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1303. this.uiTextBox5.Watermark = "批准文号";
  1304. this.uiTextBox5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1305. //
  1306. // uiTextBox4
  1307. //
  1308. this.uiTextBox4.Cursor = System.Windows.Forms.Cursors.IBeam;
  1309. this.uiTextBox4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1310. this.uiTextBox4.Location = new System.Drawing.Point(146, 1);
  1311. this.uiTextBox4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1312. this.uiTextBox4.MinimumSize = new System.Drawing.Size(1, 16);
  1313. this.uiTextBox4.Name = "uiTextBox4";
  1314. this.uiTextBox4.ShowText = false;
  1315. this.uiTextBox4.Size = new System.Drawing.Size(126, 30);
  1316. this.uiTextBox4.TabIndex = 11;
  1317. this.uiTextBox4.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1318. this.uiTextBox4.Watermark = "批准文号";
  1319. this.uiTextBox4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1320. //
  1321. // tbApprovalNO
  1322. //
  1323. this.tbApprovalNO.Controls.Add(this.uiTextBox2);
  1324. this.tbApprovalNO.Cursor = System.Windows.Forms.Cursors.IBeam;
  1325. this.tbApprovalNO.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1326. this.tbApprovalNO.Location = new System.Drawing.Point(523, 6);
  1327. this.tbApprovalNO.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
  1328. this.tbApprovalNO.MinimumSize = new System.Drawing.Size(2, 16);
  1329. this.tbApprovalNO.Name = "tbApprovalNO";
  1330. this.tbApprovalNO.ShowText = false;
  1331. this.tbApprovalNO.Size = new System.Drawing.Size(123, 30);
  1332. this.tbApprovalNO.TabIndex = 8;
  1333. this.tbApprovalNO.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1334. this.tbApprovalNO.Watermark = "批准文号";
  1335. this.tbApprovalNO.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1336. //
  1337. // uiTextBox2
  1338. //
  1339. this.uiTextBox2.Cursor = System.Windows.Forms.Cursors.IBeam;
  1340. this.uiTextBox2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1341. this.uiTextBox2.Location = new System.Drawing.Point(146, 1);
  1342. this.uiTextBox2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1343. this.uiTextBox2.MinimumSize = new System.Drawing.Size(1, 16);
  1344. this.uiTextBox2.Name = "uiTextBox2";
  1345. this.uiTextBox2.ShowText = false;
  1346. this.uiTextBox2.Size = new System.Drawing.Size(126, 30);
  1347. this.uiTextBox2.TabIndex = 11;
  1348. this.uiTextBox2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1349. this.uiTextBox2.Watermark = "批准文号";
  1350. this.uiTextBox2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1351. //
  1352. // tbInsuCode
  1353. //
  1354. this.tbInsuCode.Cursor = System.Windows.Forms.Cursors.IBeam;
  1355. this.tbInsuCode.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1356. this.tbInsuCode.Location = new System.Drawing.Point(291, 6);
  1357. this.tbInsuCode.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
  1358. this.tbInsuCode.MinimumSize = new System.Drawing.Size(2, 16);
  1359. this.tbInsuCode.Name = "tbInsuCode";
  1360. this.tbInsuCode.ShowText = false;
  1361. this.tbInsuCode.Size = new System.Drawing.Size(230, 30);
  1362. this.tbInsuCode.TabIndex = 7;
  1363. this.tbInsuCode.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1364. this.tbInsuCode.Watermark = "输入准确编码";
  1365. this.tbInsuCode.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1366. //
  1367. // btnQueryCenterDirectory
  1368. //
  1369. this.btnQueryCenterDirectory.Cursor = System.Windows.Forms.Cursors.Hand;
  1370. this.btnQueryCenterDirectory.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1371. this.btnQueryCenterDirectory.Location = new System.Drawing.Point(10, 6);
  1372. this.btnQueryCenterDirectory.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1373. this.btnQueryCenterDirectory.MinimumSize = new System.Drawing.Size(2, 2);
  1374. this.btnQueryCenterDirectory.Name = "btnQueryCenterDirectory";
  1375. this.btnQueryCenterDirectory.Size = new System.Drawing.Size(149, 30);
  1376. this.btnQueryCenterDirectory.TabIndex = 6;
  1377. this.btnQueryCenterDirectory.Text = "查询中心目录";
  1378. this.btnQueryCenterDirectory.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1379. this.btnQueryCenterDirectory.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1380. this.btnQueryCenterDirectory.Click += new System.EventHandler(this.btnQueryCenterDirectory_Click);
  1381. //
  1382. // tbCenterDirectoryFilter
  1383. //
  1384. this.tbCenterDirectoryFilter.Cursor = System.Windows.Forms.Cursors.IBeam;
  1385. this.tbCenterDirectoryFilter.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1386. this.tbCenterDirectoryFilter.Location = new System.Drawing.Point(163, 6);
  1387. this.tbCenterDirectoryFilter.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
  1388. this.tbCenterDirectoryFilter.MinimumSize = new System.Drawing.Size(2, 16);
  1389. this.tbCenterDirectoryFilter.Name = "tbCenterDirectoryFilter";
  1390. this.tbCenterDirectoryFilter.ShowText = false;
  1391. this.tbCenterDirectoryFilter.Size = new System.Drawing.Size(126, 30);
  1392. this.tbCenterDirectoryFilter.TabIndex = 5;
  1393. this.tbCenterDirectoryFilter.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1394. this.tbCenterDirectoryFilter.Watermark = "名称/缩写";
  1395. this.tbCenterDirectoryFilter.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1396. //
  1397. // pgCenterDirect
  1398. //
  1399. this.pgCenterDirect.Controls.Add(this.uiButton1);
  1400. this.pgCenterDirect.Dock = System.Windows.Forms.DockStyle.Bottom;
  1401. this.pgCenterDirect.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1402. this.pgCenterDirect.Location = new System.Drawing.Point(0, 226);
  1403. this.pgCenterDirect.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
  1404. this.pgCenterDirect.MinimumSize = new System.Drawing.Size(2, 2);
  1405. this.pgCenterDirect.Name = "pgCenterDirect";
  1406. this.pgCenterDirect.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None;
  1407. this.pgCenterDirect.ShowJumpButton = false;
  1408. this.pgCenterDirect.ShowText = false;
  1409. this.pgCenterDirect.Size = new System.Drawing.Size(1186, 34);
  1410. this.pgCenterDirect.TabIndex = 0;
  1411. this.pgCenterDirect.Text = "uiPagination3";
  1412. this.pgCenterDirect.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1413. this.pgCenterDirect.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1414. //
  1415. // uiButton1
  1416. //
  1417. this.uiButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  1418. this.uiButton1.ContextMenuStrip = this.cmsMapping;
  1419. this.uiButton1.Cursor = System.Windows.Forms.Cursors.Hand;
  1420. this.uiButton1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1421. this.uiButton1.Location = new System.Drawing.Point(1358, 4);
  1422. this.uiButton1.Margin = new System.Windows.Forms.Padding(4);
  1423. this.uiButton1.MinimumSize = new System.Drawing.Size(1, 1);
  1424. this.uiButton1.Name = "uiButton1";
  1425. this.uiButton1.Size = new System.Drawing.Size(189, 40);
  1426. this.uiButton1.TabIndex = 24;
  1427. this.uiButton1.Text = "退出";
  1428. this.uiButton1.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1429. this.uiButton1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1430. this.uiButton1.Click += new System.EventHandler(this.uiButton1_Click);
  1431. //
  1432. // uiPanel3
  1433. //
  1434. this.uiPanel3.Controls.Add(this.rbgDirecType_C);
  1435. this.uiPanel3.Dock = System.Windows.Forms.DockStyle.Left;
  1436. this.uiPanel3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1437. this.uiPanel3.Location = new System.Drawing.Point(3, 2);
  1438. this.uiPanel3.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
  1439. this.uiPanel3.MinimumSize = new System.Drawing.Size(2, 2);
  1440. this.uiPanel3.Name = "uiPanel3";
  1441. this.uiPanel3.Size = new System.Drawing.Size(178, 544);
  1442. this.uiPanel3.TabIndex = 5;
  1443. this.uiPanel3.Text = null;
  1444. this.uiPanel3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1445. this.uiPanel3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1446. //
  1447. // rbgDirecType_C
  1448. //
  1449. this.rbgDirecType_C.Dock = System.Windows.Forms.DockStyle.Fill;
  1450. this.rbgDirecType_C.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1451. this.rbgDirecType_C.Items.AddRange(new object[] {
  1452. "药品",
  1453. "诊疗",
  1454. "材料"});
  1455. this.rbgDirecType_C.Location = new System.Drawing.Point(0, 0);
  1456. this.rbgDirecType_C.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1457. this.rbgDirecType_C.MinimumSize = new System.Drawing.Size(1, 1);
  1458. this.rbgDirecType_C.Name = "rbgDirecType_C";
  1459. this.rbgDirecType_C.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  1460. this.rbgDirecType_C.Size = new System.Drawing.Size(178, 544);
  1461. this.rbgDirecType_C.TabIndex = 6;
  1462. this.rbgDirecType_C.Text = "目录类型";
  1463. this.rbgDirecType_C.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1464. this.rbgDirecType_C.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1465. this.rbgDirecType_C.ValueChanged += new Sunny.UI.UIRadioButtonGroup.OnValueChanged(this.rbgDirecType_C_ValueChanged);
  1466. //
  1467. // cmsUpdateAuxInfo
  1468. //
  1469. this.cmsUpdateAuxInfo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1470. this.cmsUpdateAuxInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1471. this.cmsUpdateAuxInfo.ImageScalingSize = new System.Drawing.Size(20, 20);
  1472. this.cmsUpdateAuxInfo.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  1473. this.tsmiSingleUpdateAuxInfo,
  1474. this.tsmiUpdateAllAuxInfo});
  1475. this.cmsUpdateAuxInfo.Name = "cmsUpdateAuxInfo";
  1476. this.cmsUpdateAuxInfo.Size = new System.Drawing.Size(241, 56);
  1477. this.cmsUpdateAuxInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1478. //
  1479. // tsmiSingleUpdateAuxInfo
  1480. //
  1481. this.tsmiSingleUpdateAuxInfo.Name = "tsmiSingleUpdateAuxInfo";
  1482. this.tsmiSingleUpdateAuxInfo.Size = new System.Drawing.Size(240, 26);
  1483. this.tsmiSingleUpdateAuxInfo.Text = "单新单条目录附属信息";
  1484. //
  1485. // tsmiUpdateAllAuxInfo
  1486. //
  1487. this.tsmiUpdateAllAuxInfo.Name = "tsmiUpdateAllAuxInfo";
  1488. this.tsmiUpdateAllAuxInfo.Size = new System.Drawing.Size(240, 26);
  1489. this.tsmiUpdateAllAuxInfo.Text = "更新所有目录附属信息";
  1490. //
  1491. // BasicData
  1492. //
  1493. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1494. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1495. this.AutoSize = true;
  1496. this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  1497. this.ClientSize = new System.Drawing.Size(1378, 583);
  1498. this.Controls.Add(this.tabControl1);
  1499. this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1500. this.Name = "BasicData";
  1501. this.Text = "医保基础数据平台";
  1502. this.Load += new System.EventHandler(this.Form1_Load);
  1503. this.tabControl1.ResumeLayout(false);
  1504. this.tabPage1.ResumeLayout(false);
  1505. this.panel1.ResumeLayout(false);
  1506. ((System.ComponentModel.ISupportInitialize)(this.dgvDirectoy)).EndInit();
  1507. this.cmsUpdateInsuDir.ResumeLayout(false);
  1508. this.panel2.ResumeLayout(false);
  1509. this.panel2.PerformLayout();
  1510. this.cmsMapping.ResumeLayout(false);
  1511. this.uiGroupBox3.ResumeLayout(false);
  1512. this.uiGroupBox3.PerformLayout();
  1513. this.uiGroupBox5.ResumeLayout(false);
  1514. this.uiGroupBox5.PerformLayout();
  1515. this.uiGroupBox2.ResumeLayout(false);
  1516. this.uiGroupBox2.PerformLayout();
  1517. this.uiGroupBox1.ResumeLayout(false);
  1518. this.uiGroupBox1.PerformLayout();
  1519. this.tabPage2.ResumeLayout(false);
  1520. this.panel7.ResumeLayout(false);
  1521. this.uiSplitContainer1.Panel1.ResumeLayout(false);
  1522. this.uiSplitContainer1.Panel2.ResumeLayout(false);
  1523. ((System.ComponentModel.ISupportInitialize)(this.uiSplitContainer1)).EndInit();
  1524. this.uiSplitContainer1.ResumeLayout(false);
  1525. this.panel3.ResumeLayout(false);
  1526. ((System.ComponentModel.ISupportInitialize)(this.dgvHISDirectory)).EndInit();
  1527. this.panel5.ResumeLayout(false);
  1528. this.panel5.PerformLayout();
  1529. this.pgHISDirect.ResumeLayout(false);
  1530. this.panel4.ResumeLayout(false);
  1531. ((System.ComponentModel.ISupportInitialize)(this.dgvCenterDirectory)).EndInit();
  1532. this.panel6.ResumeLayout(false);
  1533. this.tbManufacturer.ResumeLayout(false);
  1534. this.tbSpecifications.ResumeLayout(false);
  1535. this.tbDosageForm.ResumeLayout(false);
  1536. this.uiTextBox3.ResumeLayout(false);
  1537. this.tbApprovalNO.ResumeLayout(false);
  1538. this.pgCenterDirect.ResumeLayout(false);
  1539. this.uiPanel3.ResumeLayout(false);
  1540. this.cmsUpdateAuxInfo.ResumeLayout(false);
  1541. this.ResumeLayout(false);
  1542. }
  1543. #endregion
  1544. private System.Windows.Forms.TabControl tabControl1;
  1545. private System.Windows.Forms.TabPage tabPage1;
  1546. private System.Windows.Forms.TabPage tabPage2;
  1547. private System.Windows.Forms.Panel panel2;
  1548. private System.Windows.Forms.Panel panel1;
  1549. private Sunny.UI.UIPagination pgDownload;
  1550. private Sunny.UI.UIProcessBar uiProcessBar1;
  1551. private Sunny.UI.UIButton btnQuery;
  1552. private Sunny.UI.UIButton btnDownload;
  1553. private Sunny.UI.UIGroupBox uiGroupBox1;
  1554. private Sunny.UI.UITextBox tbVer;
  1555. private Sunny.UI.UIDataGridView dgvDirectoy;
  1556. private System.Windows.Forms.Panel panel7;
  1557. private Sunny.UI.UIContextMenuStrip cmsMapping;
  1558. private System.Windows.Forms.ToolStripMenuItem tsmiMapping;
  1559. private System.Windows.Forms.ToolStripMenuItem tsmiCancleMapping;
  1560. private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
  1561. private Sunny.UI.UISplitContainer uiSplitContainer1;
  1562. private System.Windows.Forms.Panel panel3;
  1563. private System.Windows.Forms.Panel panel5;
  1564. private Sunny.UI.UIButton btnQueryHISDirectory;
  1565. private Sunny.UI.UITextBox tbHISDirectoryFilter;
  1566. private Sunny.UI.UIPagination pgHISDirect;
  1567. private System.Windows.Forms.Panel panel4;
  1568. private System.Windows.Forms.Panel panel6;
  1569. private Sunny.UI.UIButton btnQueryCenterDirectory;
  1570. private Sunny.UI.UITextBox tbCenterDirectoryFilter;
  1571. private Sunny.UI.UIPagination pgCenterDirect;
  1572. private Sunny.UI.UIGroupBox uiGroupBox2;
  1573. private Sunny.UI.UITextBox tbDircetoryName;
  1574. private Sunny.UI.UITextBox tbDirectoryCode;
  1575. private Sunny.UI.UIRadioButton rbAutoDown;
  1576. private Sunny.UI.UIRadioButton rbSingleDown;
  1577. private Sunny.UI.UIPanel uiPanel3;
  1578. private Sunny.UI.UIRadioButtonGroup rbgDirecType_C;
  1579. private Sunny.UI.UIRadioButton rbAll;
  1580. private Sunny.UI.UIRadioButton rbNoMaped;
  1581. private Sunny.UI.UIRadioButton rbMaped;
  1582. private Sunny.UI.UIDataGridView dgvCenterDirectory;
  1583. private Sunny.UI.UIDataGridView dgvHISDirectory;
  1584. private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem_Upload;
  1585. private Sunny.UI.UITextBox tbInsuCode;
  1586. private Sunny.UI.UIGroupBox uiGroupBox5;
  1587. private Sunny.UI.UITextBox tbDicType;
  1588. private Sunny.UI.UITextBox tbDicDate;
  1589. private Sunny.UI.UIButton btAddDir;
  1590. private Sunny.UI.UIContextMenuStrip cmsUpdateAuxInfo;
  1591. private System.Windows.Forms.ToolStripMenuItem tsmiSingleUpdateAuxInfo;
  1592. private System.Windows.Forms.ToolStripMenuItem tsmiUpdateAllAuxInfo;
  1593. private Sunny.UI.UIButton btEditDir;
  1594. private Sunny.UI.UITextBox tbApprovalNO;
  1595. private Sunny.UI.UITextBox uiTextBox1;
  1596. private Sunny.UI.UIContextMenuStrip cmsUpdateInsuDir;
  1597. private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1;
  1598. private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem2;
  1599. private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
  1600. private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem3;
  1601. private Sunny.UI.UIGroupBox uiGroupBox3;
  1602. private Sunny.UI.UITextBox TexYYMC;
  1603. private Sunny.UI.UITextBox TexBYSJL;
  1604. private Sunny.UI.UITextBox TexDQYS;
  1605. private Sunny.UI.UITextBox TexDate;
  1606. private Sunny.UI.UIButton btnExit;
  1607. private Sunny.UI.UIButton uiButton1;
  1608. private System.ComponentModel.BackgroundWorker backgroundWorker1;
  1609. private Sunny.UI.UIButton btnCancelUpShip;
  1610. private Sunny.UI.UIButton btnUpShip;
  1611. private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem_CancelUpload;
  1612. private Sunny.UI.UIRadioButtonGroup rbgDirecType;
  1613. private Sunny.UI.UIButton btnExport;
  1614. private Sunny.UI.UITextBox uiTextBox2;
  1615. private Sunny.UI.UITextBox tbSpecifications;
  1616. private Sunny.UI.UITextBox uiTextBox6;
  1617. private Sunny.UI.UITextBox tbDosageForm;
  1618. private Sunny.UI.UITextBox uiTextBox4;
  1619. private Sunny.UI.UITextBox tbManufacturer;
  1620. private Sunny.UI.UITextBox uiTextBox8;
  1621. private Sunny.UI.UITextBox uiTextBox3;
  1622. private Sunny.UI.UITextBox uiTextBox5;
  1623. private Sunny.UI.UILabel LabExplain;
  1624. private Sunny.UI.UILabel lblPage;
  1625. private Sunny.UI.UILabel lblPageOrder;
  1626. private Sunny.UI.UITextBox numPage;
  1627. }
  1628. }