123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451 |
-
- namespace PTMedicalInsurance.Forms
- {
- partial class PrescriptionCirculation
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle71 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle72 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle73 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle74 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle75 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle76 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle77 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle78 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle79 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle80 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle81 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle82 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle83 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle84 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle85 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle86 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle87 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle88 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle89 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle90 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle91 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle92 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle93 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle94 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle95 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle96 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle97 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle98 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle99 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle100 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle101 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle102 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle103 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle104 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle105 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle106 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle107 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle108 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle109 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle110 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle111 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle112 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle113 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle114 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle115 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle116 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle117 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle118 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle119 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle120 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle121 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle122 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle123 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle124 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle125 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle126 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle127 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle128 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle129 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle130 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle131 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle132 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle133 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle134 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle135 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle136 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle137 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle138 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle139 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle140 = new System.Windows.Forms.DataGridViewCellStyle();
- this.tc_Main = new Sunny.UI.UITabControl();
- this.tb_PresUpload = new System.Windows.Forms.TabPage();
- this.gb_HISInsuReg = new Sunny.UI.UIGroupBox();
- this.dgv_HISRegInfo = new Sunny.UI.UIDataGridView();
- this.gb_Prescription = new Sunny.UI.UIGroupBox();
- this.dgv_PrescriptionInfo = new Sunny.UI.UIDataGridView();
- this.uiPanel1 = new Sunny.UI.UIPanel();
- this.btnElcSign = new Sunny.UI.UIButton();
- this.uiLabel2 = new Sunny.UI.UILabel();
- this.uiLabel1 = new Sunny.UI.UILabel();
- this.dtED = new Sunny.UI.UIDatetimePicker();
- this.dtST = new Sunny.UI.UIDatetimePicker();
- this.tb_CertNo = new Sunny.UI.UITextBox();
- this.btnGetInfo = new Sunny.UI.UIButton();
- this.btnUpload_Pre = new Sunny.UI.UIButton();
- this.btnClose = new Sunny.UI.UIButton();
- this.btnPresUpload = new Sunny.UI.UIButton();
- this.tb_CancelPres = new System.Windows.Forms.TabPage();
- this.uiPanel2 = new Sunny.UI.UIPanel();
- this.uiLabel3 = new Sunny.UI.UILabel();
- this.uiLabel4 = new Sunny.UI.UILabel();
- this.dt_Et = new Sunny.UI.UIDatetimePicker();
- this.dt_St = new Sunny.UI.UIDatetimePicker();
- this.tb_CertnoQuery = new Sunny.UI.UITextBox();
- this.btnQuery = new Sunny.UI.UIButton();
- this.uiButton3 = new Sunny.UI.UIButton();
- this.btnCancel = new Sunny.UI.UIButton();
- this.cbx_DocInfo = new PTControl.DBLookupCombox();
- this.label4 = new System.Windows.Forms.Label();
- this.rtb_CancelReason = new Sunny.UI.UIRichTextBox();
- this.rg_type = new Sunny.UI.UIRadioButtonGroup();
- this.dgv_Master = new Sunny.UI.UIDataGridView();
- this.tb_PresToExaInfo = new System.Windows.Forms.TabPage();
- this.uiPanel3 = new Sunny.UI.UIPanel();
- this.uiLabel5 = new Sunny.UI.UILabel();
- this.uiLabel6 = new Sunny.UI.UILabel();
- this.dt_ET_Process = new Sunny.UI.UIDatetimePicker();
- this.dt_ST_Process = new Sunny.UI.UIDatetimePicker();
- this.uiTextBox1 = new Sunny.UI.UITextBox();
- this.btnTakeDrug = new Sunny.UI.UIButton();
- this.btn_QueryUploadInfo = new Sunny.UI.UIButton();
- this.uiButton4 = new Sunny.UI.UIButton();
- this.uiButton5 = new Sunny.UI.UIButton();
- this.uiGroupBox2 = new Sunny.UI.UIGroupBox();
- this.tbc_3 = new Sunny.UI.UITabControl();
- this.tpAuthResult = new System.Windows.Forms.TabPage();
- this.dgv_PresAuditResults = new Sunny.UI.UIDataGridView();
- this.tpTakeDrugResult = new System.Windows.Forms.TabPage();
- this.dgvTakeDrugResult = new Sunny.UI.UIDataGridView();
- this.panel1 = new System.Windows.Forms.Panel();
- this.uiLabel17 = new Sunny.UI.UILabel();
- this.tbRxUseStateName_3 = new Sunny.UI.UITextBox();
- this.uiLabel16 = new Sunny.UI.UILabel();
- this.tbRxUseStateNO_3 = new Sunny.UI.UITextBox();
- this.label111 = new Sunny.UI.UILabel();
- this.tbRxStateName_3 = new Sunny.UI.UITextBox();
- this.uiLabel14 = new Sunny.UI.UILabel();
- this.tbRxStateCode = new Sunny.UI.UITextBox();
- this.uiLabel13 = new Sunny.UI.UILabel();
- this.tbSettlTime_3 = new Sunny.UI.UITextBox();
- this.uiLabel12 = new Sunny.UI.UILabel();
- this.tbHiRxNO_3 = new Sunny.UI.UITextBox();
- this.uiGroupBox1 = new Sunny.UI.UIGroupBox();
- this.dgv_PresUploadInfo = new Sunny.UI.UIDataGridView();
- this.tb_PresInfo = new System.Windows.Forms.TabPage();
- this.uiGroupBox4 = new Sunny.UI.UIGroupBox();
- this.uiTabControl2 = new Sunny.UI.UITabControl();
- this.tp_PresMain = new System.Windows.Forms.TabPage();
- this.dgv_Main_tb = new Sunny.UI.UIDataGridView();
- this.tp_DetlList = new System.Windows.Forms.TabPage();
- this.dgv_DetlList_tb = new Sunny.UI.UIDataGridView();
- this.tp_Otpinfo = new System.Windows.Forms.TabPage();
- this.dgv_Otpinfo_tb = new Sunny.UI.UIDataGridView();
- this.tp_DiseList = new System.Windows.Forms.TabPage();
- this.dgv_DiseList_tb = new Sunny.UI.UIDataGridView();
- this.uiGroupBox3 = new Sunny.UI.UIGroupBox();
- this.dgv_PresPreChekInfo = new Sunny.UI.UIDataGridView();
- this.uiPanel4 = new Sunny.UI.UIPanel();
- this.tb_QueryPresPreCheck = new Sunny.UI.UIButton();
- this.uiButton6 = new Sunny.UI.UIButton();
- this.btn_InsuQuery = new Sunny.UI.UIButton();
- this.uiLabel7 = new Sunny.UI.UILabel();
- this.uiLabel8 = new Sunny.UI.UILabel();
- this.dt_ET_PPC = new Sunny.UI.UIDatetimePicker();
- this.dt_ST_PPC = new Sunny.UI.UIDatetimePicker();
- this.tb_PresCertNo = new Sunny.UI.UITextBox();
- this.tb_QueryDrug = new System.Windows.Forms.TabPage();
- this.gbStoreAndDrug = new Sunny.UI.UIGroupBox();
- this.uiTabControl1 = new Sunny.UI.UITabControl();
- this.tabPage1 = new System.Windows.Forms.TabPage();
- this.dgvStore = new Sunny.UI.UIDataGridView();
- this.tabPage2 = new System.Windows.Forms.TabPage();
- this.dgvInventory = new Sunny.UI.UIDataGridView();
- this.uiPanel5 = new Sunny.UI.UIPanel();
- this.btnQueryRxInfo = new Sunny.UI.UIButton();
- this.btnClose_5 = new Sunny.UI.UIButton();
- this.btnQueryDrugStoreInfo = new Sunny.UI.UIButton();
- this.tbHiRxno = new Sunny.UI.UITextBox();
- this.uiLabel9 = new Sunny.UI.UILabel();
- this.gbRxInfo = new Sunny.UI.UIGroupBox();
- this.dgvRxDetail = new Sunny.UI.UIDataGridView();
- this.tc_Main.SuspendLayout();
- this.tb_PresUpload.SuspendLayout();
- this.gb_HISInsuReg.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgv_HISRegInfo)).BeginInit();
- this.gb_Prescription.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgv_PrescriptionInfo)).BeginInit();
- this.uiPanel1.SuspendLayout();
- this.tb_CancelPres.SuspendLayout();
- this.uiPanel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgv_Master)).BeginInit();
- this.tb_PresToExaInfo.SuspendLayout();
- this.uiPanel3.SuspendLayout();
- this.uiGroupBox2.SuspendLayout();
- this.tbc_3.SuspendLayout();
- this.tpAuthResult.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgv_PresAuditResults)).BeginInit();
- this.tpTakeDrugResult.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvTakeDrugResult)).BeginInit();
- this.panel1.SuspendLayout();
- this.uiGroupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgv_PresUploadInfo)).BeginInit();
- this.tb_PresInfo.SuspendLayout();
- this.uiGroupBox4.SuspendLayout();
- this.uiTabControl2.SuspendLayout();
- this.tp_PresMain.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgv_Main_tb)).BeginInit();
- this.tp_DetlList.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgv_DetlList_tb)).BeginInit();
- this.tp_Otpinfo.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgv_Otpinfo_tb)).BeginInit();
- this.tp_DiseList.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgv_DiseList_tb)).BeginInit();
- this.uiGroupBox3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgv_PresPreChekInfo)).BeginInit();
- this.uiPanel4.SuspendLayout();
- this.tb_QueryDrug.SuspendLayout();
- this.gbStoreAndDrug.SuspendLayout();
- this.uiTabControl1.SuspendLayout();
- this.tabPage1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvStore)).BeginInit();
- this.tabPage2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvInventory)).BeginInit();
- this.uiPanel5.SuspendLayout();
- this.gbRxInfo.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvRxDetail)).BeginInit();
- this.SuspendLayout();
- //
- // tc_Main
- //
- this.tc_Main.Controls.Add(this.tb_PresUpload);
- this.tc_Main.Controls.Add(this.tb_CancelPres);
- this.tc_Main.Controls.Add(this.tb_PresToExaInfo);
- this.tc_Main.Controls.Add(this.tb_PresInfo);
- this.tc_Main.Controls.Add(this.tb_QueryDrug);
- this.tc_Main.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tc_Main.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
- this.tc_Main.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tc_Main.ItemSize = new System.Drawing.Size(180, 40);
- this.tc_Main.Location = new System.Drawing.Point(0, 0);
- this.tc_Main.MainPage = "";
- this.tc_Main.Name = "tc_Main";
- this.tc_Main.SelectedIndex = 0;
- this.tc_Main.Size = new System.Drawing.Size(1365, 717);
- this.tc_Main.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
- this.tc_Main.TabIndex = 0;
- this.tc_Main.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tc_Main.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tb_PresUpload
- //
- this.tb_PresUpload.Controls.Add(this.gb_HISInsuReg);
- this.tb_PresUpload.Controls.Add(this.gb_Prescription);
- this.tb_PresUpload.Controls.Add(this.uiPanel1);
- this.tb_PresUpload.Location = new System.Drawing.Point(0, 40);
- this.tb_PresUpload.Name = "tb_PresUpload";
- this.tb_PresUpload.Size = new System.Drawing.Size(1365, 677);
- this.tb_PresUpload.TabIndex = 0;
- this.tb_PresUpload.Text = "电子处方上传";
- this.tb_PresUpload.UseVisualStyleBackColor = true;
- //
- // gb_HISInsuReg
- //
- this.gb_HISInsuReg.Controls.Add(this.dgv_HISRegInfo);
- this.gb_HISInsuReg.Dock = System.Windows.Forms.DockStyle.Fill;
- this.gb_HISInsuReg.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.gb_HISInsuReg.Location = new System.Drawing.Point(0, 0);
- this.gb_HISInsuReg.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.gb_HISInsuReg.MinimumSize = new System.Drawing.Size(1, 1);
- this.gb_HISInsuReg.Name = "gb_HISInsuReg";
- this.gb_HISInsuReg.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.gb_HISInsuReg.Size = new System.Drawing.Size(1365, 296);
- this.gb_HISInsuReg.TabIndex = 9;
- this.gb_HISInsuReg.Text = "HIS就诊信息(点击查看处方明细)";
- this.gb_HISInsuReg.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.gb_HISInsuReg.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dgv_HISRegInfo
- //
- this.dgv_HISRegInfo.AllowUserToAddRows = false;
- dataGridViewCellStyle71.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_HISRegInfo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle71;
- this.dgv_HISRegInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_HISRegInfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle72.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle72.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle72.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle72.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle72.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle72.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle72.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_HISRegInfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle72;
- this.dgv_HISRegInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle73.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle73.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle73.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle73.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle73.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle73.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle73.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgv_HISRegInfo.DefaultCellStyle = dataGridViewCellStyle73;
- this.dgv_HISRegInfo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgv_HISRegInfo.EnableHeadersVisualStyles = false;
- this.dgv_HISRegInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgv_HISRegInfo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgv_HISRegInfo.Location = new System.Drawing.Point(0, 32);
- this.dgv_HISRegInfo.Name = "dgv_HISRegInfo";
- dataGridViewCellStyle74.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle74.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle74.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle74.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle74.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle74.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle74.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_HISRegInfo.RowHeadersDefaultCellStyle = dataGridViewCellStyle74;
- dataGridViewCellStyle75.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle75.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle75.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle75.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle75.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgv_HISRegInfo.RowsDefaultCellStyle = dataGridViewCellStyle75;
- this.dgv_HISRegInfo.RowTemplate.Height = 23;
- this.dgv_HISRegInfo.SelectedIndex = -1;
- this.dgv_HISRegInfo.Size = new System.Drawing.Size(1365, 264);
- this.dgv_HISRegInfo.TabIndex = 5;
- this.dgv_HISRegInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // gb_Prescription
- //
- this.gb_Prescription.Controls.Add(this.dgv_PrescriptionInfo);
- this.gb_Prescription.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.gb_Prescription.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.gb_Prescription.Location = new System.Drawing.Point(0, 296);
- this.gb_Prescription.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.gb_Prescription.MinimumSize = new System.Drawing.Size(1, 1);
- this.gb_Prescription.Name = "gb_Prescription";
- this.gb_Prescription.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.gb_Prescription.Size = new System.Drawing.Size(1365, 298);
- this.gb_Prescription.TabIndex = 6;
- this.gb_Prescription.Text = "处方信息";
- this.gb_Prescription.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.gb_Prescription.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dgv_PrescriptionInfo
- //
- this.dgv_PrescriptionInfo.AllowUserToAddRows = false;
- dataGridViewCellStyle76.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_PrescriptionInfo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle76;
- this.dgv_PrescriptionInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_PrescriptionInfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle77.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle77.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle77.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle77.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle77.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle77.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle77.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_PrescriptionInfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle77;
- this.dgv_PrescriptionInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle78.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle78.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle78.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle78.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle78.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle78.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle78.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgv_PrescriptionInfo.DefaultCellStyle = dataGridViewCellStyle78;
- this.dgv_PrescriptionInfo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgv_PrescriptionInfo.EnableHeadersVisualStyles = false;
- this.dgv_PrescriptionInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgv_PrescriptionInfo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgv_PrescriptionInfo.Location = new System.Drawing.Point(0, 32);
- this.dgv_PrescriptionInfo.Name = "dgv_PrescriptionInfo";
- dataGridViewCellStyle79.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle79.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle79.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle79.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle79.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle79.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle79.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_PrescriptionInfo.RowHeadersDefaultCellStyle = dataGridViewCellStyle79;
- dataGridViewCellStyle80.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle80.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle80.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle80.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle80.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgv_PrescriptionInfo.RowsDefaultCellStyle = dataGridViewCellStyle80;
- this.dgv_PrescriptionInfo.RowTemplate.Height = 23;
- this.dgv_PrescriptionInfo.SelectedIndex = -1;
- this.dgv_PrescriptionInfo.Size = new System.Drawing.Size(1365, 266);
- this.dgv_PrescriptionInfo.TabIndex = 5;
- this.dgv_PrescriptionInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiPanel1
- //
- this.uiPanel1.Controls.Add(this.btnElcSign);
- this.uiPanel1.Controls.Add(this.uiLabel2);
- this.uiPanel1.Controls.Add(this.uiLabel1);
- this.uiPanel1.Controls.Add(this.dtED);
- this.uiPanel1.Controls.Add(this.dtST);
- this.uiPanel1.Controls.Add(this.tb_CertNo);
- this.uiPanel1.Controls.Add(this.btnGetInfo);
- this.uiPanel1.Controls.Add(this.btnUpload_Pre);
- this.uiPanel1.Controls.Add(this.btnClose);
- this.uiPanel1.Controls.Add(this.btnPresUpload);
- this.uiPanel1.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.uiPanel1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiPanel1.Location = new System.Drawing.Point(0, 594);
- this.uiPanel1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiPanel1.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiPanel1.Name = "uiPanel1";
- this.uiPanel1.Size = new System.Drawing.Size(1365, 83);
- this.uiPanel1.TabIndex = 0;
- this.uiPanel1.Text = null;
- this.uiPanel1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiPanel1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // btnElcSign
- //
- this.btnElcSign.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btnElcSign.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnElcSign.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnElcSign.Location = new System.Drawing.Point(1003, 11);
- this.btnElcSign.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnElcSign.Name = "btnElcSign";
- this.btnElcSign.Size = new System.Drawing.Size(119, 62);
- this.btnElcSign.TabIndex = 40;
- this.btnElcSign.Text = "3.电子签名";
- this.btnElcSign.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnElcSign.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnElcSign.Click += new System.EventHandler(this.btnElcSign_Click);
- //
- // uiLabel2
- //
- this.uiLabel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.uiLabel2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel2.Location = new System.Drawing.Point(309, 11);
- this.uiLabel2.Name = "uiLabel2";
- this.uiLabel2.Size = new System.Drawing.Size(90, 23);
- this.uiLabel2.TabIndex = 39;
- this.uiLabel2.Text = "身份证号:";
- this.uiLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel1
- //
- this.uiLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.uiLabel1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel1.Location = new System.Drawing.Point(16, 11);
- this.uiLabel1.Name = "uiLabel1";
- this.uiLabel1.Size = new System.Drawing.Size(90, 23);
- this.uiLabel1.TabIndex = 38;
- this.uiLabel1.Text = "查询时间:";
- this.uiLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dtED
- //
- this.dtED.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.dtED.FillColor = System.Drawing.Color.White;
- this.dtED.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dtED.Location = new System.Drawing.Point(109, 44);
- this.dtED.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dtED.MaxLength = 19;
- this.dtED.MinimumSize = new System.Drawing.Size(63, 0);
- this.dtED.Name = "dtED";
- this.dtED.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dtED.Size = new System.Drawing.Size(183, 29);
- this.dtED.SymbolDropDown = 61555;
- this.dtED.SymbolNormal = 61555;
- this.dtED.TabIndex = 37;
- this.dtED.Text = "2023-06-15 00:00:00";
- this.dtED.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dtED.Value = new System.DateTime(2023, 6, 15, 0, 0, 0, 0);
- this.dtED.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dtST
- //
- this.dtST.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.dtST.FillColor = System.Drawing.Color.White;
- this.dtST.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dtST.Location = new System.Drawing.Point(109, 9);
- this.dtST.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dtST.MaxLength = 19;
- this.dtST.MinimumSize = new System.Drawing.Size(63, 0);
- this.dtST.Name = "dtST";
- this.dtST.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dtST.Size = new System.Drawing.Size(183, 29);
- this.dtST.SymbolDropDown = 61555;
- this.dtST.SymbolNormal = 61555;
- this.dtST.TabIndex = 36;
- this.dtST.Text = "2023-06-14 00:00:00";
- this.dtST.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dtST.Value = new System.DateTime(2023, 6, 14, 0, 0, 0, 0);
- this.dtST.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tb_CertNo
- //
- this.tb_CertNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.tb_CertNo.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.tb_CertNo.DoubleValue = 4.3042419900810061E+17D;
- this.tb_CertNo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tb_CertNo.Location = new System.Drawing.Point(307, 44);
- this.tb_CertNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.tb_CertNo.MinimumSize = new System.Drawing.Size(1, 16);
- this.tb_CertNo.Name = "tb_CertNo";
- this.tb_CertNo.ShowText = false;
- this.tb_CertNo.Size = new System.Drawing.Size(175, 29);
- this.tb_CertNo.TabIndex = 30;
- this.tb_CertNo.Text = "430424199008100625";
- this.tb_CertNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.tb_CertNo.Watermark = "请输入身份证号";
- this.tb_CertNo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // btnGetInfo
- //
- this.btnGetInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.btnGetInfo.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnGetInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnGetInfo.Location = new System.Drawing.Point(499, 11);
- this.btnGetInfo.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnGetInfo.Name = "btnGetInfo";
- this.btnGetInfo.Size = new System.Drawing.Size(111, 62);
- this.btnGetInfo.TabIndex = 29;
- this.btnGetInfo.Text = "1.查 询";
- this.btnGetInfo.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnGetInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnGetInfo.Click += new System.EventHandler(this.btnReadCard_Click);
- //
- // btnUpload_Pre
- //
- this.btnUpload_Pre.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btnUpload_Pre.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnUpload_Pre.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnUpload_Pre.Location = new System.Drawing.Point(882, 11);
- this.btnUpload_Pre.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnUpload_Pre.Name = "btnUpload_Pre";
- this.btnUpload_Pre.Size = new System.Drawing.Size(119, 62);
- this.btnUpload_Pre.TabIndex = 2;
- this.btnUpload_Pre.Text = "2.预核验";
- this.btnUpload_Pre.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnUpload_Pre.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnUpload_Pre.Click += new System.EventHandler(this.btnUpload_Pre_Click);
- //
- // btnClose
- //
- this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btnClose.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnClose.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnClose.Location = new System.Drawing.Point(1254, 11);
- this.btnClose.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnClose.Name = "btnClose";
- this.btnClose.Size = new System.Drawing.Size(107, 62);
- this.btnClose.TabIndex = 1;
- this.btnClose.Text = "退 出";
- this.btnClose.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnClose.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
- //
- // btnPresUpload
- //
- this.btnPresUpload.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btnPresUpload.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnPresUpload.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnPresUpload.Location = new System.Drawing.Point(1124, 11);
- this.btnPresUpload.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnPresUpload.Name = "btnPresUpload";
- this.btnPresUpload.Size = new System.Drawing.Size(119, 62);
- this.btnPresUpload.TabIndex = 0;
- this.btnPresUpload.Text = "4.确认上传";
- this.btnPresUpload.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnPresUpload.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnPresUpload.Click += new System.EventHandler(this.btnPresUpload_Click);
- //
- // tb_CancelPres
- //
- this.tb_CancelPres.Controls.Add(this.uiPanel2);
- this.tb_CancelPres.Controls.Add(this.dgv_Master);
- this.tb_CancelPres.Location = new System.Drawing.Point(0, 40);
- this.tb_CancelPres.Name = "tb_CancelPres";
- this.tb_CancelPres.Size = new System.Drawing.Size(1365, 677);
- this.tb_CancelPres.TabIndex = 1;
- this.tb_CancelPres.Text = "电子处方撤销";
- this.tb_CancelPres.UseVisualStyleBackColor = true;
- //
- // uiPanel2
- //
- this.uiPanel2.Controls.Add(this.uiLabel3);
- this.uiPanel2.Controls.Add(this.uiLabel4);
- this.uiPanel2.Controls.Add(this.dt_Et);
- this.uiPanel2.Controls.Add(this.dt_St);
- this.uiPanel2.Controls.Add(this.tb_CertnoQuery);
- this.uiPanel2.Controls.Add(this.btnQuery);
- this.uiPanel2.Controls.Add(this.uiButton3);
- this.uiPanel2.Controls.Add(this.btnCancel);
- this.uiPanel2.Controls.Add(this.cbx_DocInfo);
- this.uiPanel2.Controls.Add(this.label4);
- this.uiPanel2.Controls.Add(this.rtb_CancelReason);
- this.uiPanel2.Controls.Add(this.rg_type);
- this.uiPanel2.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.uiPanel2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiPanel2.Location = new System.Drawing.Point(0, 576);
- this.uiPanel2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiPanel2.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiPanel2.Name = "uiPanel2";
- this.uiPanel2.Size = new System.Drawing.Size(1365, 101);
- this.uiPanel2.TabIndex = 9;
- this.uiPanel2.Text = null;
- this.uiPanel2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiPanel2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel3
- //
- this.uiLabel3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.uiLabel3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel3.Location = new System.Drawing.Point(19, 70);
- this.uiLabel3.Name = "uiLabel3";
- this.uiLabel3.Size = new System.Drawing.Size(90, 23);
- this.uiLabel3.TabIndex = 51;
- this.uiLabel3.Text = "身份证号:";
- this.uiLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel4
- //
- this.uiLabel4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.uiLabel4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel4.Location = new System.Drawing.Point(19, 10);
- this.uiLabel4.Name = "uiLabel4";
- this.uiLabel4.Size = new System.Drawing.Size(90, 23);
- this.uiLabel4.TabIndex = 50;
- this.uiLabel4.Text = "查询时间:";
- this.uiLabel4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dt_Et
- //
- this.dt_Et.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.dt_Et.FillColor = System.Drawing.Color.White;
- this.dt_Et.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dt_Et.Location = new System.Drawing.Point(115, 37);
- this.dt_Et.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dt_Et.MaxLength = 19;
- this.dt_Et.MinimumSize = new System.Drawing.Size(63, 0);
- this.dt_Et.Name = "dt_Et";
- this.dt_Et.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dt_Et.Size = new System.Drawing.Size(198, 29);
- this.dt_Et.SymbolDropDown = 61555;
- this.dt_Et.SymbolNormal = 61555;
- this.dt_Et.TabIndex = 49;
- this.dt_Et.Text = "2023-06-15 00:00:00";
- this.dt_Et.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dt_Et.Value = new System.DateTime(2023, 6, 15, 0, 0, 0, 0);
- this.dt_Et.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dt_St
- //
- this.dt_St.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.dt_St.FillColor = System.Drawing.Color.White;
- this.dt_St.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dt_St.Location = new System.Drawing.Point(115, 7);
- this.dt_St.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dt_St.MaxLength = 19;
- this.dt_St.MinimumSize = new System.Drawing.Size(63, 0);
- this.dt_St.Name = "dt_St";
- this.dt_St.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dt_St.Size = new System.Drawing.Size(198, 29);
- this.dt_St.SymbolDropDown = 61555;
- this.dt_St.SymbolNormal = 61555;
- this.dt_St.TabIndex = 48;
- this.dt_St.Text = "2023-06-14 00:00:00";
- this.dt_St.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dt_St.Value = new System.DateTime(2023, 6, 14, 0, 0, 0, 0);
- this.dt_St.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tb_CertnoQuery
- //
- this.tb_CertnoQuery.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.tb_CertnoQuery.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.tb_CertnoQuery.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tb_CertnoQuery.Location = new System.Drawing.Point(115, 67);
- this.tb_CertnoQuery.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.tb_CertnoQuery.MinimumSize = new System.Drawing.Size(1, 16);
- this.tb_CertnoQuery.Name = "tb_CertnoQuery";
- this.tb_CertnoQuery.ShowText = false;
- this.tb_CertnoQuery.Size = new System.Drawing.Size(198, 29);
- this.tb_CertnoQuery.TabIndex = 47;
- this.tb_CertnoQuery.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.tb_CertnoQuery.Watermark = "请输入身份证号";
- this.tb_CertnoQuery.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // btnQuery
- //
- this.btnQuery.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btnQuery.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnQuery.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnQuery.Location = new System.Drawing.Point(1024, 14);
- this.btnQuery.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnQuery.Name = "btnQuery";
- this.btnQuery.Size = new System.Drawing.Size(114, 75);
- this.btnQuery.TabIndex = 46;
- this.btnQuery.Text = "查 询";
- this.btnQuery.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnQuery.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnQuery.Click += new System.EventHandler(this.btnQuery_Click);
- //
- // uiButton3
- //
- this.uiButton3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton3.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton3.Location = new System.Drawing.Point(1254, 14);
- this.uiButton3.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton3.Name = "uiButton3";
- this.uiButton3.Size = new System.Drawing.Size(106, 75);
- this.uiButton3.TabIndex = 45;
- this.uiButton3.Text = "退 出";
- this.uiButton3.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton3.Click += new System.EventHandler(this.btnClose_Click);
- //
- // btnCancel
- //
- this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btnCancel.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnCancel.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnCancel.Location = new System.Drawing.Point(1139, 14);
- this.btnCancel.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnCancel.Name = "btnCancel";
- this.btnCancel.Size = new System.Drawing.Size(114, 75);
- this.btnCancel.TabIndex = 44;
- this.btnCancel.Text = "确认撤销";
- this.btnCancel.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnCancel.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
- //
- // cbx_DocInfo
- //
- this.cbx_DocInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.cbx_DocInfo.FormattingEnabled = true;
- this.cbx_DocInfo.Location = new System.Drawing.Point(649, 7);
- this.cbx_DocInfo.Name = "cbx_DocInfo";
- this.cbx_DocInfo.NullValue = "";
- this.cbx_DocInfo.PopupGridAutoSize = false;
- this.cbx_DocInfo.RowFilterVisible = false;
- this.cbx_DocInfo.sDisplayField = "";
- this.cbx_DocInfo.sDisplayMember = "";
- this.cbx_DocInfo.SeparatorChar = "|";
- this.cbx_DocInfo.Size = new System.Drawing.Size(230, 29);
- this.cbx_DocInfo.sKeyWords = "";
- this.cbx_DocInfo.sValueMember = "";
- this.cbx_DocInfo.TabIndex = 43;
- this.cbx_DocInfo.Value = "";
- this.cbx_DocInfo.AfterSelector += new PTControl.AfterSelectorEventHandler(this.cbx_DocInfo_AfterSelector);
- //
- // label4
- //
- this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.label4.AutoSize = true;
- this.label4.ForeColor = System.Drawing.SystemColors.InfoText;
- this.label4.Location = new System.Drawing.Point(552, 11);
- this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(90, 21);
- this.label4.TabIndex = 42;
- this.label4.Text = "撤销医师:";
- //
- // rtb_CancelReason
- //
- this.rtb_CancelReason.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.rtb_CancelReason.FillColor = System.Drawing.Color.White;
- this.rtb_CancelReason.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.rtb_CancelReason.Location = new System.Drawing.Point(552, 37);
- this.rtb_CancelReason.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.rtb_CancelReason.MinimumSize = new System.Drawing.Size(1, 1);
- this.rtb_CancelReason.Name = "rtb_CancelReason";
- this.rtb_CancelReason.Padding = new System.Windows.Forms.Padding(2);
- this.rtb_CancelReason.ShowText = false;
- this.rtb_CancelReason.Size = new System.Drawing.Size(328, 58);
- this.rtb_CancelReason.TabIndex = 41;
- this.rtb_CancelReason.Text = "请输入撤销原因";
- this.rtb_CancelReason.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.rtb_CancelReason.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // rg_type
- //
- this.rg_type.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.rg_type.ColumnCount = 2;
- this.rg_type.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.rg_type.Items.AddRange(new object[] {
- "全部",
- "已上传",
- "已撤销"});
- this.rg_type.ItemSize = new System.Drawing.Size(100, 35);
- this.rg_type.Location = new System.Drawing.Point(321, 1);
- this.rg_type.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.rg_type.MinimumSize = new System.Drawing.Size(1, 1);
- this.rg_type.Name = "rg_type";
- this.rg_type.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.rg_type.Size = new System.Drawing.Size(222, 95);
- this.rg_type.TabIndex = 40;
- this.rg_type.Text = "上传状态";
- this.rg_type.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.rg_type.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dgv_Master
- //
- this.dgv_Master.AllowUserToAddRows = false;
- dataGridViewCellStyle81.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_Master.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle81;
- this.dgv_Master.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_Master.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle82.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle82.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle82.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle82.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle82.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle82.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle82.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_Master.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle82;
- this.dgv_Master.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle83.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle83.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle83.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle83.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle83.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle83.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle83.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgv_Master.DefaultCellStyle = dataGridViewCellStyle83;
- this.dgv_Master.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgv_Master.EnableHeadersVisualStyles = false;
- this.dgv_Master.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgv_Master.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgv_Master.Location = new System.Drawing.Point(0, 0);
- this.dgv_Master.Name = "dgv_Master";
- dataGridViewCellStyle84.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle84.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle84.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle84.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle84.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle84.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle84.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_Master.RowHeadersDefaultCellStyle = dataGridViewCellStyle84;
- dataGridViewCellStyle85.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle85.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle85.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle85.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle85.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgv_Master.RowsDefaultCellStyle = dataGridViewCellStyle85;
- this.dgv_Master.RowTemplate.Height = 23;
- this.dgv_Master.SelectedIndex = -1;
- this.dgv_Master.Size = new System.Drawing.Size(1365, 677);
- this.dgv_Master.TabIndex = 6;
- this.dgv_Master.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tb_PresToExaInfo
- //
- this.tb_PresToExaInfo.Controls.Add(this.uiPanel3);
- this.tb_PresToExaInfo.Controls.Add(this.uiGroupBox2);
- this.tb_PresToExaInfo.Controls.Add(this.uiGroupBox1);
- this.tb_PresToExaInfo.Location = new System.Drawing.Point(0, 40);
- this.tb_PresToExaInfo.Name = "tb_PresToExaInfo";
- this.tb_PresToExaInfo.Size = new System.Drawing.Size(1365, 677);
- this.tb_PresToExaInfo.TabIndex = 3;
- this.tb_PresToExaInfo.Text = "电子处方审核结果查询";
- this.tb_PresToExaInfo.UseVisualStyleBackColor = true;
- //
- // uiPanel3
- //
- this.uiPanel3.Controls.Add(this.uiLabel5);
- this.uiPanel3.Controls.Add(this.uiLabel6);
- this.uiPanel3.Controls.Add(this.dt_ET_Process);
- this.uiPanel3.Controls.Add(this.dt_ST_Process);
- this.uiPanel3.Controls.Add(this.uiTextBox1);
- this.uiPanel3.Controls.Add(this.btnTakeDrug);
- this.uiPanel3.Controls.Add(this.btn_QueryUploadInfo);
- this.uiPanel3.Controls.Add(this.uiButton4);
- this.uiPanel3.Controls.Add(this.uiButton5);
- this.uiPanel3.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.uiPanel3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiPanel3.Location = new System.Drawing.Point(0, 576);
- this.uiPanel3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiPanel3.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiPanel3.Name = "uiPanel3";
- this.uiPanel3.Size = new System.Drawing.Size(1365, 101);
- this.uiPanel3.TabIndex = 13;
- this.uiPanel3.Text = null;
- this.uiPanel3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiPanel3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel5
- //
- this.uiLabel5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.uiLabel5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel5.Location = new System.Drawing.Point(307, 24);
- this.uiLabel5.Name = "uiLabel5";
- this.uiLabel5.Size = new System.Drawing.Size(90, 23);
- this.uiLabel5.TabIndex = 59;
- this.uiLabel5.Text = "身份证号:";
- this.uiLabel5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel6
- //
- this.uiLabel6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.uiLabel6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel6.Location = new System.Drawing.Point(11, 21);
- this.uiLabel6.Name = "uiLabel6";
- this.uiLabel6.Size = new System.Drawing.Size(90, 23);
- this.uiLabel6.TabIndex = 58;
- this.uiLabel6.Text = "查询时间:";
- this.uiLabel6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dt_ET_Process
- //
- this.dt_ET_Process.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.dt_ET_Process.FillColor = System.Drawing.Color.White;
- this.dt_ET_Process.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dt_ET_Process.Location = new System.Drawing.Point(109, 55);
- this.dt_ET_Process.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dt_ET_Process.MaxLength = 19;
- this.dt_ET_Process.MinimumSize = new System.Drawing.Size(63, 0);
- this.dt_ET_Process.Name = "dt_ET_Process";
- this.dt_ET_Process.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dt_ET_Process.Size = new System.Drawing.Size(183, 29);
- this.dt_ET_Process.SymbolDropDown = 61555;
- this.dt_ET_Process.SymbolNormal = 61555;
- this.dt_ET_Process.TabIndex = 57;
- this.dt_ET_Process.Text = "2023-06-15 00:00:00";
- this.dt_ET_Process.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dt_ET_Process.Value = new System.DateTime(2023, 6, 15, 0, 0, 0, 0);
- this.dt_ET_Process.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dt_ST_Process
- //
- this.dt_ST_Process.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.dt_ST_Process.FillColor = System.Drawing.Color.White;
- this.dt_ST_Process.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dt_ST_Process.Location = new System.Drawing.Point(109, 19);
- this.dt_ST_Process.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dt_ST_Process.MaxLength = 19;
- this.dt_ST_Process.MinimumSize = new System.Drawing.Size(63, 0);
- this.dt_ST_Process.Name = "dt_ST_Process";
- this.dt_ST_Process.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dt_ST_Process.Size = new System.Drawing.Size(183, 29);
- this.dt_ST_Process.SymbolDropDown = 61555;
- this.dt_ST_Process.SymbolNormal = 61555;
- this.dt_ST_Process.TabIndex = 56;
- this.dt_ST_Process.Text = "2023-06-14 00:00:00";
- this.dt_ST_Process.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dt_ST_Process.Value = new System.DateTime(2023, 6, 14, 0, 0, 0, 0);
- this.dt_ST_Process.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiTextBox1
- //
- this.uiTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.uiTextBox1.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.uiTextBox1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTextBox1.Location = new System.Drawing.Point(404, 21);
- this.uiTextBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiTextBox1.MinimumSize = new System.Drawing.Size(1, 16);
- this.uiTextBox1.Name = "uiTextBox1";
- this.uiTextBox1.ShowText = false;
- this.uiTextBox1.Size = new System.Drawing.Size(183, 29);
- this.uiTextBox1.TabIndex = 55;
- this.uiTextBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiTextBox1.Watermark = "请输入身份证号";
- this.uiTextBox1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // btnTakeDrug
- //
- this.btnTakeDrug.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btnTakeDrug.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnTakeDrug.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnTakeDrug.Location = new System.Drawing.Point(1025, 52);
- this.btnTakeDrug.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnTakeDrug.Name = "btnTakeDrug";
- this.btnTakeDrug.Size = new System.Drawing.Size(226, 34);
- this.btnTakeDrug.TabIndex = 44;
- this.btnTakeDrug.Text = "选中上传记录查询取药结果";
- this.btnTakeDrug.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnTakeDrug.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnTakeDrug.Click += new System.EventHandler(this.btnTakeDrug_Click);
- //
- // btn_QueryUploadInfo
- //
- this.btn_QueryUploadInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btn_QueryUploadInfo.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btn_QueryUploadInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn_QueryUploadInfo.Location = new System.Drawing.Point(826, 15);
- this.btn_QueryUploadInfo.MinimumSize = new System.Drawing.Size(1, 1);
- this.btn_QueryUploadInfo.Name = "btn_QueryUploadInfo";
- this.btn_QueryUploadInfo.Size = new System.Drawing.Size(196, 71);
- this.btn_QueryUploadInfo.TabIndex = 43;
- this.btn_QueryUploadInfo.Text = "1.电子处方上传记录查询";
- this.btn_QueryUploadInfo.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn_QueryUploadInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btn_QueryUploadInfo.Click += new System.EventHandler(this.btn_QueryUploadInfo_Click);
- //
- // uiButton4
- //
- this.uiButton4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton4.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton4.Location = new System.Drawing.Point(1254, 15);
- this.uiButton4.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton4.Name = "uiButton4";
- this.uiButton4.Size = new System.Drawing.Size(106, 72);
- this.uiButton4.TabIndex = 42;
- this.uiButton4.Text = "退 出";
- this.uiButton4.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton4.Click += new System.EventHandler(this.btnClose_Click);
- //
- // uiButton5
- //
- this.uiButton5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton5.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton5.Location = new System.Drawing.Point(1025, 15);
- this.uiButton5.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton5.Name = "uiButton5";
- this.uiButton5.Size = new System.Drawing.Size(226, 34);
- this.uiButton5.TabIndex = 41;
- this.uiButton5.Text = "选中上传记录查询审核结果";
- this.uiButton5.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton5.Click += new System.EventHandler(this.uiButton5_Click);
- //
- // uiGroupBox2
- //
- this.uiGroupBox2.Controls.Add(this.tbc_3);
- this.uiGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uiGroupBox2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox2.Location = new System.Drawing.Point(0, 310);
- this.uiGroupBox2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox2.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox2.Name = "uiGroupBox2";
- this.uiGroupBox2.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.uiGroupBox2.Size = new System.Drawing.Size(1365, 367);
- this.uiGroupBox2.TabIndex = 12;
- this.uiGroupBox2.Text = "处方审核结果&取药结果";
- this.uiGroupBox2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiGroupBox2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tbc_3
- //
- this.tbc_3.Controls.Add(this.tpAuthResult);
- this.tbc_3.Controls.Add(this.tpTakeDrugResult);
- this.tbc_3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tbc_3.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
- this.tbc_3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbc_3.ItemSize = new System.Drawing.Size(150, 40);
- this.tbc_3.Location = new System.Drawing.Point(0, 32);
- this.tbc_3.MainPage = "";
- this.tbc_3.Name = "tbc_3";
- this.tbc_3.SelectedIndex = 0;
- this.tbc_3.Size = new System.Drawing.Size(1365, 335);
- this.tbc_3.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
- this.tbc_3.TabIndex = 0;
- this.tbc_3.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbc_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tpAuthResult
- //
- this.tpAuthResult.Controls.Add(this.dgv_PresAuditResults);
- this.tpAuthResult.Location = new System.Drawing.Point(0, 40);
- this.tpAuthResult.Name = "tpAuthResult";
- this.tpAuthResult.Size = new System.Drawing.Size(1365, 295);
- this.tpAuthResult.TabIndex = 0;
- this.tpAuthResult.Text = "审核结果";
- this.tpAuthResult.UseVisualStyleBackColor = true;
- //
- // dgv_PresAuditResults
- //
- this.dgv_PresAuditResults.AllowUserToAddRows = false;
- dataGridViewCellStyle86.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_PresAuditResults.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle86;
- this.dgv_PresAuditResults.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_PresAuditResults.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle87.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle87.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle87.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle87.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle87.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle87.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle87.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_PresAuditResults.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle87;
- this.dgv_PresAuditResults.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle88.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle88.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle88.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle88.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle88.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle88.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle88.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgv_PresAuditResults.DefaultCellStyle = dataGridViewCellStyle88;
- this.dgv_PresAuditResults.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgv_PresAuditResults.EnableHeadersVisualStyles = false;
- this.dgv_PresAuditResults.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgv_PresAuditResults.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgv_PresAuditResults.Location = new System.Drawing.Point(0, 0);
- this.dgv_PresAuditResults.Name = "dgv_PresAuditResults";
- dataGridViewCellStyle89.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle89.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle89.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle89.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle89.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle89.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle89.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_PresAuditResults.RowHeadersDefaultCellStyle = dataGridViewCellStyle89;
- dataGridViewCellStyle90.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle90.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle90.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle90.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle90.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgv_PresAuditResults.RowsDefaultCellStyle = dataGridViewCellStyle90;
- this.dgv_PresAuditResults.RowTemplate.Height = 23;
- this.dgv_PresAuditResults.SelectedIndex = -1;
- this.dgv_PresAuditResults.Size = new System.Drawing.Size(1365, 295);
- this.dgv_PresAuditResults.TabIndex = 13;
- this.dgv_PresAuditResults.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tpTakeDrugResult
- //
- this.tpTakeDrugResult.Controls.Add(this.dgvTakeDrugResult);
- this.tpTakeDrugResult.Controls.Add(this.panel1);
- this.tpTakeDrugResult.Location = new System.Drawing.Point(0, 40);
- this.tpTakeDrugResult.Name = "tpTakeDrugResult";
- this.tpTakeDrugResult.Size = new System.Drawing.Size(200, 0);
- this.tpTakeDrugResult.TabIndex = 1;
- this.tpTakeDrugResult.Text = "取药结果";
- this.tpTakeDrugResult.UseVisualStyleBackColor = true;
- //
- // dgvTakeDrugResult
- //
- this.dgvTakeDrugResult.AllowUserToAddRows = false;
- dataGridViewCellStyle91.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgvTakeDrugResult.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle91;
- this.dgvTakeDrugResult.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgvTakeDrugResult.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle92.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle92.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle92.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle92.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle92.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle92.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle92.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvTakeDrugResult.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle92;
- this.dgvTakeDrugResult.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle93.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle93.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle93.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle93.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle93.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle93.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle93.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgvTakeDrugResult.DefaultCellStyle = dataGridViewCellStyle93;
- this.dgvTakeDrugResult.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvTakeDrugResult.EnableHeadersVisualStyles = false;
- this.dgvTakeDrugResult.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvTakeDrugResult.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgvTakeDrugResult.Location = new System.Drawing.Point(0, 100);
- this.dgvTakeDrugResult.Name = "dgvTakeDrugResult";
- dataGridViewCellStyle94.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle94.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle94.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle94.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle94.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle94.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle94.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvTakeDrugResult.RowHeadersDefaultCellStyle = dataGridViewCellStyle94;
- dataGridViewCellStyle95.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle95.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle95.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle95.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle95.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgvTakeDrugResult.RowsDefaultCellStyle = dataGridViewCellStyle95;
- this.dgvTakeDrugResult.RowTemplate.Height = 23;
- this.dgvTakeDrugResult.SelectedIndex = -1;
- this.dgvTakeDrugResult.Size = new System.Drawing.Size(200, 0);
- this.dgvTakeDrugResult.TabIndex = 14;
- this.dgvTakeDrugResult.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // panel1
- //
- this.panel1.Controls.Add(this.uiLabel17);
- this.panel1.Controls.Add(this.tbRxUseStateName_3);
- this.panel1.Controls.Add(this.uiLabel16);
- this.panel1.Controls.Add(this.tbRxUseStateNO_3);
- this.panel1.Controls.Add(this.label111);
- this.panel1.Controls.Add(this.tbRxStateName_3);
- this.panel1.Controls.Add(this.uiLabel14);
- this.panel1.Controls.Add(this.tbRxStateCode);
- this.panel1.Controls.Add(this.uiLabel13);
- this.panel1.Controls.Add(this.tbSettlTime_3);
- this.panel1.Controls.Add(this.uiLabel12);
- this.panel1.Controls.Add(this.tbHiRxNO_3);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel1.Location = new System.Drawing.Point(0, 0);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(200, 100);
- this.panel1.TabIndex = 16;
- //
- // uiLabel17
- //
- this.uiLabel17.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.uiLabel17.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel17.Location = new System.Drawing.Point(513, 59);
- this.uiLabel17.Name = "uiLabel17";
- this.uiLabel17.Size = new System.Drawing.Size(157, 23);
- this.uiLabel17.TabIndex = 51;
- this.uiLabel17.Text = "处方使用状态名称:";
- this.uiLabel17.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel17.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tbRxUseStateName_3
- //
- this.tbRxUseStateName_3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.tbRxUseStateName_3.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.tbRxUseStateName_3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbRxUseStateName_3.Location = new System.Drawing.Point(699, 59);
- this.tbRxUseStateName_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.tbRxUseStateName_3.MinimumSize = new System.Drawing.Size(1, 16);
- this.tbRxUseStateName_3.Name = "tbRxUseStateName_3";
- this.tbRxUseStateName_3.ShowText = false;
- this.tbRxUseStateName_3.Size = new System.Drawing.Size(251, 29);
- this.tbRxUseStateName_3.TabIndex = 50;
- this.tbRxUseStateName_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.tbRxUseStateName_3.Watermark = "请输入身份证号";
- this.tbRxUseStateName_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel16
- //
- this.uiLabel16.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.uiLabel16.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel16.Location = new System.Drawing.Point(514, 19);
- this.uiLabel16.Name = "uiLabel16";
- this.uiLabel16.Size = new System.Drawing.Size(158, 23);
- this.uiLabel16.TabIndex = 49;
- this.uiLabel16.Text = "处方使用状态编号:";
- this.uiLabel16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel16.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tbRxUseStateNO_3
- //
- this.tbRxUseStateNO_3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.tbRxUseStateNO_3.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.tbRxUseStateNO_3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbRxUseStateNO_3.Location = new System.Drawing.Point(699, 15);
- this.tbRxUseStateNO_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.tbRxUseStateNO_3.MinimumSize = new System.Drawing.Size(1, 16);
- this.tbRxUseStateNO_3.Name = "tbRxUseStateNO_3";
- this.tbRxUseStateNO_3.ShowText = false;
- this.tbRxUseStateNO_3.Size = new System.Drawing.Size(251, 29);
- this.tbRxUseStateNO_3.TabIndex = 48;
- this.tbRxUseStateNO_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.tbRxUseStateNO_3.Watermark = "请输入身份证号";
- this.tbRxUseStateNO_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // label111
- //
- this.label111.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.label111.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label111.Location = new System.Drawing.Point(969, 59);
- this.label111.Name = "label111";
- this.label111.Size = new System.Drawing.Size(159, 23);
- this.label111.TabIndex = 47;
- this.label111.Text = "医保处方状态名称:";
- this.label111.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.label111.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tbRxStateName_3
- //
- this.tbRxStateName_3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.tbRxStateName_3.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.tbRxStateName_3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbRxStateName_3.Location = new System.Drawing.Point(1181, 59);
- this.tbRxStateName_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.tbRxStateName_3.MinimumSize = new System.Drawing.Size(1, 16);
- this.tbRxStateName_3.Name = "tbRxStateName_3";
- this.tbRxStateName_3.ShowText = false;
- this.tbRxStateName_3.Size = new System.Drawing.Size(183, 29);
- this.tbRxStateName_3.TabIndex = 46;
- this.tbRxStateName_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.tbRxStateName_3.Watermark = "请输入身份证号";
- this.tbRxStateName_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel14
- //
- this.uiLabel14.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.uiLabel14.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel14.Location = new System.Drawing.Point(965, 15);
- this.uiLabel14.Margin = new System.Windows.Forms.Padding(3, 0, 1, 0);
- this.uiLabel14.Name = "uiLabel14";
- this.uiLabel14.Size = new System.Drawing.Size(163, 23);
- this.uiLabel14.TabIndex = 45;
- this.uiLabel14.Text = "医保处方状态编码:";
- this.uiLabel14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel14.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tbRxStateCode
- //
- this.tbRxStateCode.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.tbRxStateCode.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.tbRxStateCode.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbRxStateCode.Location = new System.Drawing.Point(1181, 9);
- this.tbRxStateCode.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.tbRxStateCode.MinimumSize = new System.Drawing.Size(1, 16);
- this.tbRxStateCode.Name = "tbRxStateCode";
- this.tbRxStateCode.ShowText = false;
- this.tbRxStateCode.Size = new System.Drawing.Size(183, 29);
- this.tbRxStateCode.TabIndex = 44;
- this.tbRxStateCode.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.tbRxStateCode.Watermark = "请输入身份证号";
- this.tbRxStateCode.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel13
- //
- this.uiLabel13.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.uiLabel13.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel13.Location = new System.Drawing.Point(16, 52);
- this.uiLabel13.Name = "uiLabel13";
- this.uiLabel13.Size = new System.Drawing.Size(144, 23);
- this.uiLabel13.TabIndex = 43;
- this.uiLabel13.Text = "结算时间:";
- this.uiLabel13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel13.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tbSettlTime_3
- //
- this.tbSettlTime_3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.tbSettlTime_3.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.tbSettlTime_3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbSettlTime_3.Location = new System.Drawing.Point(182, 52);
- this.tbSettlTime_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.tbSettlTime_3.MinimumSize = new System.Drawing.Size(1, 16);
- this.tbSettlTime_3.Name = "tbSettlTime_3";
- this.tbSettlTime_3.ShowText = false;
- this.tbSettlTime_3.Size = new System.Drawing.Size(261, 29);
- this.tbSettlTime_3.TabIndex = 42;
- this.tbSettlTime_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.tbSettlTime_3.Watermark = "请输入身份证号";
- this.tbSettlTime_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel12
- //
- this.uiLabel12.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.uiLabel12.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel12.Location = new System.Drawing.Point(16, 15);
- this.uiLabel12.Name = "uiLabel12";
- this.uiLabel12.Size = new System.Drawing.Size(144, 23);
- this.uiLabel12.TabIndex = 41;
- this.uiLabel12.Text = "医保处方编号:";
- this.uiLabel12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel12.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tbHiRxNO_3
- //
- this.tbHiRxNO_3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.tbHiRxNO_3.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.tbHiRxNO_3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbHiRxNO_3.Location = new System.Drawing.Point(182, 13);
- this.tbHiRxNO_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.tbHiRxNO_3.MinimumSize = new System.Drawing.Size(1, 16);
- this.tbHiRxNO_3.Name = "tbHiRxNO_3";
- this.tbHiRxNO_3.ShowText = false;
- this.tbHiRxNO_3.Size = new System.Drawing.Size(261, 29);
- this.tbHiRxNO_3.TabIndex = 40;
- this.tbHiRxNO_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.tbHiRxNO_3.Watermark = "请输入身份证号";
- this.tbHiRxNO_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiGroupBox1
- //
- this.uiGroupBox1.Controls.Add(this.dgv_PresUploadInfo);
- this.uiGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
- this.uiGroupBox1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox1.Location = new System.Drawing.Point(0, 0);
- this.uiGroupBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox1.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox1.Name = "uiGroupBox1";
- this.uiGroupBox1.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.uiGroupBox1.Size = new System.Drawing.Size(1365, 310);
- this.uiGroupBox1.TabIndex = 10;
- this.uiGroupBox1.Text = "电子处方上传记录";
- this.uiGroupBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiGroupBox1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dgv_PresUploadInfo
- //
- this.dgv_PresUploadInfo.AllowUserToAddRows = false;
- dataGridViewCellStyle96.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_PresUploadInfo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle96;
- this.dgv_PresUploadInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_PresUploadInfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle97.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle97.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle97.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle97.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle97.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle97.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle97.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_PresUploadInfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle97;
- this.dgv_PresUploadInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle98.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle98.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle98.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle98.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle98.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle98.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle98.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgv_PresUploadInfo.DefaultCellStyle = dataGridViewCellStyle98;
- this.dgv_PresUploadInfo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgv_PresUploadInfo.EnableHeadersVisualStyles = false;
- this.dgv_PresUploadInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgv_PresUploadInfo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgv_PresUploadInfo.Location = new System.Drawing.Point(0, 32);
- this.dgv_PresUploadInfo.Name = "dgv_PresUploadInfo";
- dataGridViewCellStyle99.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle99.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle99.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle99.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle99.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle99.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle99.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_PresUploadInfo.RowHeadersDefaultCellStyle = dataGridViewCellStyle99;
- dataGridViewCellStyle100.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle100.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle100.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle100.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle100.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgv_PresUploadInfo.RowsDefaultCellStyle = dataGridViewCellStyle100;
- this.dgv_PresUploadInfo.RowTemplate.Height = 23;
- this.dgv_PresUploadInfo.SelectedIndex = -1;
- this.dgv_PresUploadInfo.Size = new System.Drawing.Size(1365, 278);
- this.dgv_PresUploadInfo.TabIndex = 11;
- this.dgv_PresUploadInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tb_PresInfo
- //
- this.tb_PresInfo.Controls.Add(this.uiGroupBox4);
- this.tb_PresInfo.Controls.Add(this.uiGroupBox3);
- this.tb_PresInfo.Controls.Add(this.uiPanel4);
- this.tb_PresInfo.Location = new System.Drawing.Point(0, 40);
- this.tb_PresInfo.Name = "tb_PresInfo";
- this.tb_PresInfo.Size = new System.Drawing.Size(1365, 677);
- this.tb_PresInfo.TabIndex = 2;
- this.tb_PresInfo.Text = "电子处方信息查询";
- this.tb_PresInfo.UseVisualStyleBackColor = true;
- //
- // uiGroupBox4
- //
- this.uiGroupBox4.Controls.Add(this.uiTabControl2);
- this.uiGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uiGroupBox4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox4.Location = new System.Drawing.Point(0, 268);
- this.uiGroupBox4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox4.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox4.Name = "uiGroupBox4";
- this.uiGroupBox4.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.uiGroupBox4.Size = new System.Drawing.Size(1365, 312);
- this.uiGroupBox4.TabIndex = 11;
- this.uiGroupBox4.Text = "医保电子处方中心返回信息";
- this.uiGroupBox4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiGroupBox4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiTabControl2
- //
- this.uiTabControl2.Controls.Add(this.tp_PresMain);
- this.uiTabControl2.Controls.Add(this.tp_DetlList);
- this.uiTabControl2.Controls.Add(this.tp_Otpinfo);
- this.uiTabControl2.Controls.Add(this.tp_DiseList);
- this.uiTabControl2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uiTabControl2.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
- this.uiTabControl2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTabControl2.ItemSize = new System.Drawing.Size(150, 40);
- this.uiTabControl2.Location = new System.Drawing.Point(0, 32);
- this.uiTabControl2.MainPage = "";
- this.uiTabControl2.Name = "uiTabControl2";
- this.uiTabControl2.SelectedIndex = 0;
- this.uiTabControl2.Size = new System.Drawing.Size(1365, 280);
- this.uiTabControl2.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
- this.uiTabControl2.TabIndex = 0;
- this.uiTabControl2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTabControl2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tp_PresMain
- //
- this.tp_PresMain.Controls.Add(this.dgv_Main_tb);
- this.tp_PresMain.Location = new System.Drawing.Point(0, 40);
- this.tp_PresMain.Name = "tp_PresMain";
- this.tp_PresMain.Size = new System.Drawing.Size(1365, 240);
- this.tp_PresMain.TabIndex = 0;
- this.tp_PresMain.Text = "处方信息";
- this.tp_PresMain.UseVisualStyleBackColor = true;
- //
- // dgv_Main_tb
- //
- this.dgv_Main_tb.AllowUserToAddRows = false;
- dataGridViewCellStyle101.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_Main_tb.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle101;
- this.dgv_Main_tb.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_Main_tb.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle102.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle102.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle102.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle102.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle102.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle102.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle102.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_Main_tb.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle102;
- this.dgv_Main_tb.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle103.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle103.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle103.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle103.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle103.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle103.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle103.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgv_Main_tb.DefaultCellStyle = dataGridViewCellStyle103;
- this.dgv_Main_tb.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgv_Main_tb.EnableHeadersVisualStyles = false;
- this.dgv_Main_tb.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgv_Main_tb.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgv_Main_tb.Location = new System.Drawing.Point(0, 0);
- this.dgv_Main_tb.Name = "dgv_Main_tb";
- dataGridViewCellStyle104.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle104.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle104.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle104.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle104.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle104.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle104.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_Main_tb.RowHeadersDefaultCellStyle = dataGridViewCellStyle104;
- dataGridViewCellStyle105.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle105.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle105.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle105.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle105.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgv_Main_tb.RowsDefaultCellStyle = dataGridViewCellStyle105;
- this.dgv_Main_tb.RowTemplate.Height = 23;
- this.dgv_Main_tb.SelectedIndex = -1;
- this.dgv_Main_tb.Size = new System.Drawing.Size(1365, 240);
- this.dgv_Main_tb.TabIndex = 1;
- this.dgv_Main_tb.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tp_DetlList
- //
- this.tp_DetlList.Controls.Add(this.dgv_DetlList_tb);
- this.tp_DetlList.Location = new System.Drawing.Point(0, 40);
- this.tp_DetlList.Name = "tp_DetlList";
- this.tp_DetlList.Size = new System.Drawing.Size(200, 0);
- this.tp_DetlList.TabIndex = 1;
- this.tp_DetlList.Text = "处方明细信息";
- this.tp_DetlList.UseVisualStyleBackColor = true;
- //
- // dgv_DetlList_tb
- //
- this.dgv_DetlList_tb.AllowUserToAddRows = false;
- dataGridViewCellStyle106.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_DetlList_tb.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle106;
- this.dgv_DetlList_tb.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_DetlList_tb.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle107.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle107.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle107.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle107.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle107.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle107.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle107.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_DetlList_tb.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle107;
- this.dgv_DetlList_tb.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle108.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle108.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle108.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle108.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle108.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle108.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle108.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgv_DetlList_tb.DefaultCellStyle = dataGridViewCellStyle108;
- this.dgv_DetlList_tb.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgv_DetlList_tb.EnableHeadersVisualStyles = false;
- this.dgv_DetlList_tb.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgv_DetlList_tb.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgv_DetlList_tb.Location = new System.Drawing.Point(0, 0);
- this.dgv_DetlList_tb.Name = "dgv_DetlList_tb";
- dataGridViewCellStyle109.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle109.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle109.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle109.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle109.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle109.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle109.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_DetlList_tb.RowHeadersDefaultCellStyle = dataGridViewCellStyle109;
- dataGridViewCellStyle110.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle110.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle110.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle110.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle110.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgv_DetlList_tb.RowsDefaultCellStyle = dataGridViewCellStyle110;
- this.dgv_DetlList_tb.RowTemplate.Height = 23;
- this.dgv_DetlList_tb.SelectedIndex = -1;
- this.dgv_DetlList_tb.Size = new System.Drawing.Size(200, 0);
- this.dgv_DetlList_tb.TabIndex = 1;
- this.dgv_DetlList_tb.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tp_Otpinfo
- //
- this.tp_Otpinfo.Controls.Add(this.dgv_Otpinfo_tb);
- this.tp_Otpinfo.Location = new System.Drawing.Point(0, 40);
- this.tp_Otpinfo.Name = "tp_Otpinfo";
- this.tp_Otpinfo.Size = new System.Drawing.Size(200, 0);
- this.tp_Otpinfo.TabIndex = 2;
- this.tp_Otpinfo.Text = "就诊信息";
- this.tp_Otpinfo.UseVisualStyleBackColor = true;
- //
- // dgv_Otpinfo_tb
- //
- this.dgv_Otpinfo_tb.AllowUserToAddRows = false;
- dataGridViewCellStyle111.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_Otpinfo_tb.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle111;
- this.dgv_Otpinfo_tb.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_Otpinfo_tb.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle112.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle112.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle112.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle112.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle112.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle112.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle112.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_Otpinfo_tb.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle112;
- this.dgv_Otpinfo_tb.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle113.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle113.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle113.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle113.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle113.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle113.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle113.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgv_Otpinfo_tb.DefaultCellStyle = dataGridViewCellStyle113;
- this.dgv_Otpinfo_tb.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgv_Otpinfo_tb.EnableHeadersVisualStyles = false;
- this.dgv_Otpinfo_tb.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgv_Otpinfo_tb.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgv_Otpinfo_tb.Location = new System.Drawing.Point(0, 0);
- this.dgv_Otpinfo_tb.Name = "dgv_Otpinfo_tb";
- dataGridViewCellStyle114.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle114.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle114.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle114.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle114.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle114.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle114.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_Otpinfo_tb.RowHeadersDefaultCellStyle = dataGridViewCellStyle114;
- dataGridViewCellStyle115.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle115.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle115.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle115.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle115.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgv_Otpinfo_tb.RowsDefaultCellStyle = dataGridViewCellStyle115;
- this.dgv_Otpinfo_tb.RowTemplate.Height = 23;
- this.dgv_Otpinfo_tb.SelectedIndex = -1;
- this.dgv_Otpinfo_tb.Size = new System.Drawing.Size(200, 0);
- this.dgv_Otpinfo_tb.TabIndex = 1;
- this.dgv_Otpinfo_tb.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tp_DiseList
- //
- this.tp_DiseList.Controls.Add(this.dgv_DiseList_tb);
- this.tp_DiseList.Location = new System.Drawing.Point(0, 40);
- this.tp_DiseList.Name = "tp_DiseList";
- this.tp_DiseList.Size = new System.Drawing.Size(200, 0);
- this.tp_DiseList.TabIndex = 3;
- this.tp_DiseList.Text = "诊断信息";
- this.tp_DiseList.UseVisualStyleBackColor = true;
- //
- // dgv_DiseList_tb
- //
- this.dgv_DiseList_tb.AllowUserToAddRows = false;
- dataGridViewCellStyle116.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_DiseList_tb.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle116;
- this.dgv_DiseList_tb.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_DiseList_tb.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle117.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle117.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle117.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle117.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle117.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle117.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle117.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_DiseList_tb.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle117;
- this.dgv_DiseList_tb.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle118.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle118.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle118.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle118.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle118.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle118.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle118.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgv_DiseList_tb.DefaultCellStyle = dataGridViewCellStyle118;
- this.dgv_DiseList_tb.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgv_DiseList_tb.EnableHeadersVisualStyles = false;
- this.dgv_DiseList_tb.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgv_DiseList_tb.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgv_DiseList_tb.Location = new System.Drawing.Point(0, 0);
- this.dgv_DiseList_tb.Name = "dgv_DiseList_tb";
- dataGridViewCellStyle119.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle119.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle119.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle119.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle119.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle119.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle119.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_DiseList_tb.RowHeadersDefaultCellStyle = dataGridViewCellStyle119;
- dataGridViewCellStyle120.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle120.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle120.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle120.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle120.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgv_DiseList_tb.RowsDefaultCellStyle = dataGridViewCellStyle120;
- this.dgv_DiseList_tb.RowTemplate.Height = 23;
- this.dgv_DiseList_tb.SelectedIndex = -1;
- this.dgv_DiseList_tb.Size = new System.Drawing.Size(200, 0);
- this.dgv_DiseList_tb.TabIndex = 1;
- this.dgv_DiseList_tb.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiGroupBox3
- //
- this.uiGroupBox3.Controls.Add(this.dgv_PresPreChekInfo);
- this.uiGroupBox3.Dock = System.Windows.Forms.DockStyle.Top;
- this.uiGroupBox3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox3.Location = new System.Drawing.Point(0, 0);
- this.uiGroupBox3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox3.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox3.Name = "uiGroupBox3";
- this.uiGroupBox3.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.uiGroupBox3.Size = new System.Drawing.Size(1365, 268);
- this.uiGroupBox3.TabIndex = 10;
- this.uiGroupBox3.Text = "电子处方预核验信息(包含未上传和已上传电子处方)";
- this.uiGroupBox3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiGroupBox3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dgv_PresPreChekInfo
- //
- this.dgv_PresPreChekInfo.AllowUserToAddRows = false;
- dataGridViewCellStyle121.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_PresPreChekInfo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle121;
- this.dgv_PresPreChekInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgv_PresPreChekInfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle122.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle122.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle122.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle122.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle122.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle122.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle122.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_PresPreChekInfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle122;
- this.dgv_PresPreChekInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle123.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle123.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle123.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle123.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle123.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle123.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle123.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgv_PresPreChekInfo.DefaultCellStyle = dataGridViewCellStyle123;
- this.dgv_PresPreChekInfo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgv_PresPreChekInfo.EnableHeadersVisualStyles = false;
- this.dgv_PresPreChekInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgv_PresPreChekInfo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgv_PresPreChekInfo.Location = new System.Drawing.Point(0, 32);
- this.dgv_PresPreChekInfo.Name = "dgv_PresPreChekInfo";
- dataGridViewCellStyle124.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle124.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle124.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle124.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle124.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle124.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle124.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgv_PresPreChekInfo.RowHeadersDefaultCellStyle = dataGridViewCellStyle124;
- dataGridViewCellStyle125.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle125.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle125.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle125.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle125.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgv_PresPreChekInfo.RowsDefaultCellStyle = dataGridViewCellStyle125;
- this.dgv_PresPreChekInfo.RowTemplate.Height = 23;
- this.dgv_PresPreChekInfo.SelectedIndex = -1;
- this.dgv_PresPreChekInfo.Size = new System.Drawing.Size(1365, 236);
- this.dgv_PresPreChekInfo.TabIndex = 0;
- this.dgv_PresPreChekInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiPanel4
- //
- this.uiPanel4.Controls.Add(this.tb_QueryPresPreCheck);
- this.uiPanel4.Controls.Add(this.uiButton6);
- this.uiPanel4.Controls.Add(this.btn_InsuQuery);
- this.uiPanel4.Controls.Add(this.uiLabel7);
- this.uiPanel4.Controls.Add(this.uiLabel8);
- this.uiPanel4.Controls.Add(this.dt_ET_PPC);
- this.uiPanel4.Controls.Add(this.dt_ST_PPC);
- this.uiPanel4.Controls.Add(this.tb_PresCertNo);
- this.uiPanel4.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.uiPanel4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiPanel4.Location = new System.Drawing.Point(0, 580);
- this.uiPanel4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiPanel4.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiPanel4.Name = "uiPanel4";
- this.uiPanel4.Size = new System.Drawing.Size(1365, 97);
- this.uiPanel4.TabIndex = 9;
- this.uiPanel4.Text = null;
- this.uiPanel4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiPanel4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tb_QueryPresPreCheck
- //
- this.tb_QueryPresPreCheck.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.tb_QueryPresPreCheck.Cursor = System.Windows.Forms.Cursors.Hand;
- this.tb_QueryPresPreCheck.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tb_QueryPresPreCheck.Location = new System.Drawing.Point(795, 13);
- this.tb_QueryPresPreCheck.MinimumSize = new System.Drawing.Size(1, 1);
- this.tb_QueryPresPreCheck.Name = "tb_QueryPresPreCheck";
- this.tb_QueryPresPreCheck.Size = new System.Drawing.Size(150, 69);
- this.tb_QueryPresPreCheck.TabIndex = 53;
- this.tb_QueryPresPreCheck.Text = "1.预核验记录查询";
- this.tb_QueryPresPreCheck.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tb_QueryPresPreCheck.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.tb_QueryPresPreCheck.Click += new System.EventHandler(this.tb_QueryPresPreCheck_Click);
- //
- // uiButton6
- //
- this.uiButton6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton6.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton6.Location = new System.Drawing.Point(1251, 13);
- this.uiButton6.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton6.Name = "uiButton6";
- this.uiButton6.Size = new System.Drawing.Size(109, 69);
- this.uiButton6.TabIndex = 52;
- this.uiButton6.Text = "退 出";
- this.uiButton6.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton6.Click += new System.EventHandler(this.btnClose_Click);
- //
- // btn_InsuQuery
- //
- this.btn_InsuQuery.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btn_InsuQuery.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btn_InsuQuery.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn_InsuQuery.Location = new System.Drawing.Point(948, 13);
- this.btn_InsuQuery.MinimumSize = new System.Drawing.Size(1, 1);
- this.btn_InsuQuery.Name = "btn_InsuQuery";
- this.btn_InsuQuery.Size = new System.Drawing.Size(300, 69);
- this.btn_InsuQuery.TabIndex = 51;
- this.btn_InsuQuery.Text = "2.选中预核验信息查电子处方详细信息";
- this.btn_InsuQuery.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn_InsuQuery.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btn_InsuQuery.Click += new System.EventHandler(this.btn_InsuQuery_Click);
- //
- // uiLabel7
- //
- this.uiLabel7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.uiLabel7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel7.Location = new System.Drawing.Point(312, 14);
- this.uiLabel7.Name = "uiLabel7";
- this.uiLabel7.Size = new System.Drawing.Size(90, 23);
- this.uiLabel7.TabIndex = 47;
- this.uiLabel7.Text = "身份证号:";
- this.uiLabel7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel8
- //
- this.uiLabel8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.uiLabel8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel8.Location = new System.Drawing.Point(18, 14);
- this.uiLabel8.Name = "uiLabel8";
- this.uiLabel8.Size = new System.Drawing.Size(90, 23);
- this.uiLabel8.TabIndex = 46;
- this.uiLabel8.Text = "查询时间:";
- this.uiLabel8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dt_ET_PPC
- //
- this.dt_ET_PPC.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.dt_ET_PPC.FillColor = System.Drawing.Color.White;
- this.dt_ET_PPC.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dt_ET_PPC.Location = new System.Drawing.Point(113, 53);
- this.dt_ET_PPC.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dt_ET_PPC.MaxLength = 19;
- this.dt_ET_PPC.MinimumSize = new System.Drawing.Size(63, 0);
- this.dt_ET_PPC.Name = "dt_ET_PPC";
- this.dt_ET_PPC.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dt_ET_PPC.Size = new System.Drawing.Size(183, 29);
- this.dt_ET_PPC.SymbolDropDown = 61555;
- this.dt_ET_PPC.SymbolNormal = 61555;
- this.dt_ET_PPC.TabIndex = 45;
- this.dt_ET_PPC.Text = "2023-06-15 00:00:00";
- this.dt_ET_PPC.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dt_ET_PPC.Value = new System.DateTime(2023, 6, 15, 0, 0, 0, 0);
- this.dt_ET_PPC.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dt_ST_PPC
- //
- this.dt_ST_PPC.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.dt_ST_PPC.FillColor = System.Drawing.Color.White;
- this.dt_ST_PPC.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dt_ST_PPC.Location = new System.Drawing.Point(113, 14);
- this.dt_ST_PPC.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dt_ST_PPC.MaxLength = 19;
- this.dt_ST_PPC.MinimumSize = new System.Drawing.Size(63, 0);
- this.dt_ST_PPC.Name = "dt_ST_PPC";
- this.dt_ST_PPC.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dt_ST_PPC.Size = new System.Drawing.Size(183, 29);
- this.dt_ST_PPC.SymbolDropDown = 61555;
- this.dt_ST_PPC.SymbolNormal = 61555;
- this.dt_ST_PPC.TabIndex = 44;
- this.dt_ST_PPC.Text = "2023-06-14 00:00:00";
- this.dt_ST_PPC.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dt_ST_PPC.Value = new System.DateTime(2023, 6, 14, 0, 0, 0, 0);
- this.dt_ST_PPC.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tb_PresCertNo
- //
- this.tb_PresCertNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.tb_PresCertNo.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.tb_PresCertNo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tb_PresCertNo.Location = new System.Drawing.Point(311, 53);
- this.tb_PresCertNo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.tb_PresCertNo.MinimumSize = new System.Drawing.Size(1, 16);
- this.tb_PresCertNo.Name = "tb_PresCertNo";
- this.tb_PresCertNo.ShowText = false;
- this.tb_PresCertNo.Size = new System.Drawing.Size(183, 29);
- this.tb_PresCertNo.TabIndex = 43;
- this.tb_PresCertNo.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.tb_PresCertNo.Watermark = "请输入身份证号";
- this.tb_PresCertNo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tb_QueryDrug
- //
- this.tb_QueryDrug.Controls.Add(this.gbStoreAndDrug);
- this.tb_QueryDrug.Controls.Add(this.uiPanel5);
- this.tb_QueryDrug.Controls.Add(this.gbRxInfo);
- this.tb_QueryDrug.Location = new System.Drawing.Point(0, 40);
- this.tb_QueryDrug.Name = "tb_QueryDrug";
- this.tb_QueryDrug.Size = new System.Drawing.Size(1365, 677);
- this.tb_QueryDrug.TabIndex = 4;
- this.tb_QueryDrug.Text = "查询药店&药品信息";
- this.tb_QueryDrug.UseVisualStyleBackColor = true;
- //
- // gbStoreAndDrug
- //
- this.gbStoreAndDrug.Controls.Add(this.uiTabControl1);
- this.gbStoreAndDrug.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.gbStoreAndDrug.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.gbStoreAndDrug.Location = new System.Drawing.Point(0, 297);
- this.gbStoreAndDrug.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.gbStoreAndDrug.MinimumSize = new System.Drawing.Size(1, 1);
- this.gbStoreAndDrug.Name = "gbStoreAndDrug";
- this.gbStoreAndDrug.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.gbStoreAndDrug.Size = new System.Drawing.Size(1365, 294);
- this.gbStoreAndDrug.TabIndex = 20;
- this.gbStoreAndDrug.Text = "药店&库存信息";
- this.gbStoreAndDrug.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.gbStoreAndDrug.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiTabControl1
- //
- this.uiTabControl1.Controls.Add(this.tabPage1);
- this.uiTabControl1.Controls.Add(this.tabPage2);
- this.uiTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uiTabControl1.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
- this.uiTabControl1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTabControl1.ItemSize = new System.Drawing.Size(150, 40);
- this.uiTabControl1.Location = new System.Drawing.Point(0, 32);
- this.uiTabControl1.MainPage = "";
- this.uiTabControl1.Name = "uiTabControl1";
- this.uiTabControl1.SelectedIndex = 0;
- this.uiTabControl1.Size = new System.Drawing.Size(1365, 262);
- this.uiTabControl1.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
- this.uiTabControl1.TabIndex = 1;
- this.uiTabControl1.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTabControl1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tabPage1
- //
- this.tabPage1.Controls.Add(this.dgvStore);
- this.tabPage1.Location = new System.Drawing.Point(0, 40);
- this.tabPage1.Name = "tabPage1";
- this.tabPage1.Size = new System.Drawing.Size(1365, 222);
- this.tabPage1.TabIndex = 0;
- this.tabPage1.Text = "药店信息";
- this.tabPage1.UseVisualStyleBackColor = true;
- //
- // dgvStore
- //
- this.dgvStore.AllowUserToAddRows = false;
- dataGridViewCellStyle126.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgvStore.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle126;
- this.dgvStore.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgvStore.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle127.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle127.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle127.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle127.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle127.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle127.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle127.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvStore.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle127;
- this.dgvStore.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle128.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle128.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle128.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle128.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle128.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle128.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle128.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgvStore.DefaultCellStyle = dataGridViewCellStyle128;
- this.dgvStore.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvStore.EnableHeadersVisualStyles = false;
- this.dgvStore.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvStore.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgvStore.Location = new System.Drawing.Point(0, 0);
- this.dgvStore.Name = "dgvStore";
- dataGridViewCellStyle129.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle129.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle129.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle129.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle129.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle129.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle129.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvStore.RowHeadersDefaultCellStyle = dataGridViewCellStyle129;
- dataGridViewCellStyle130.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle130.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle130.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle130.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle130.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgvStore.RowsDefaultCellStyle = dataGridViewCellStyle130;
- this.dgvStore.RowTemplate.Height = 23;
- this.dgvStore.SelectedIndex = -1;
- this.dgvStore.Size = new System.Drawing.Size(1365, 222);
- this.dgvStore.TabIndex = 1;
- this.dgvStore.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tabPage2
- //
- this.tabPage2.Controls.Add(this.dgvInventory);
- this.tabPage2.Location = new System.Drawing.Point(0, 40);
- this.tabPage2.Name = "tabPage2";
- this.tabPage2.Size = new System.Drawing.Size(1365, 222);
- this.tabPage2.TabIndex = 1;
- this.tabPage2.Text = "库存信息";
- this.tabPage2.UseVisualStyleBackColor = true;
- //
- // dgvInventory
- //
- this.dgvInventory.AllowUserToAddRows = false;
- dataGridViewCellStyle131.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgvInventory.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle131;
- this.dgvInventory.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgvInventory.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle132.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle132.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle132.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle132.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle132.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle132.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle132.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvInventory.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle132;
- this.dgvInventory.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle133.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle133.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle133.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle133.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle133.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle133.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle133.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgvInventory.DefaultCellStyle = dataGridViewCellStyle133;
- this.dgvInventory.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvInventory.EnableHeadersVisualStyles = false;
- this.dgvInventory.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvInventory.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgvInventory.Location = new System.Drawing.Point(0, 0);
- this.dgvInventory.Name = "dgvInventory";
- dataGridViewCellStyle134.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle134.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle134.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle134.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle134.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle134.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle134.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvInventory.RowHeadersDefaultCellStyle = dataGridViewCellStyle134;
- dataGridViewCellStyle135.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle135.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle135.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle135.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle135.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgvInventory.RowsDefaultCellStyle = dataGridViewCellStyle135;
- this.dgvInventory.RowTemplate.Height = 23;
- this.dgvInventory.SelectedIndex = -1;
- this.dgvInventory.Size = new System.Drawing.Size(1365, 222);
- this.dgvInventory.TabIndex = 1;
- this.dgvInventory.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiPanel5
- //
- this.uiPanel5.Controls.Add(this.btnQueryRxInfo);
- this.uiPanel5.Controls.Add(this.btnClose_5);
- this.uiPanel5.Controls.Add(this.btnQueryDrugStoreInfo);
- this.uiPanel5.Controls.Add(this.tbHiRxno);
- this.uiPanel5.Controls.Add(this.uiLabel9);
- this.uiPanel5.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.uiPanel5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiPanel5.Location = new System.Drawing.Point(0, 591);
- this.uiPanel5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiPanel5.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiPanel5.Name = "uiPanel5";
- this.uiPanel5.Size = new System.Drawing.Size(1365, 86);
- this.uiPanel5.TabIndex = 19;
- this.uiPanel5.Text = null;
- this.uiPanel5.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiPanel5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // btnQueryRxInfo
- //
- this.btnQueryRxInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btnQueryRxInfo.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnQueryRxInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnQueryRxInfo.Location = new System.Drawing.Point(940, 12);
- this.btnQueryRxInfo.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnQueryRxInfo.Name = "btnQueryRxInfo";
- this.btnQueryRxInfo.Size = new System.Drawing.Size(151, 62);
- this.btnQueryRxInfo.TabIndex = 46;
- this.btnQueryRxInfo.Text = "1.查询处方信息";
- this.btnQueryRxInfo.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnQueryRxInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnQueryRxInfo.Click += new System.EventHandler(this.btnQueryRxInfo_Click);
- //
- // btnClose_5
- //
- this.btnClose_5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btnClose_5.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnClose_5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnClose_5.Location = new System.Drawing.Point(1252, 12);
- this.btnClose_5.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnClose_5.Name = "btnClose_5";
- this.btnClose_5.Size = new System.Drawing.Size(107, 62);
- this.btnClose_5.TabIndex = 45;
- this.btnClose_5.Text = "退 出";
- this.btnClose_5.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnClose_5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnClose_5.Click += new System.EventHandler(this.btnClose_Click);
- //
- // btnQueryDrugStoreInfo
- //
- this.btnQueryDrugStoreInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btnQueryDrugStoreInfo.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnQueryDrugStoreInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnQueryDrugStoreInfo.Location = new System.Drawing.Point(1095, 12);
- this.btnQueryDrugStoreInfo.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnQueryDrugStoreInfo.Name = "btnQueryDrugStoreInfo";
- this.btnQueryDrugStoreInfo.Size = new System.Drawing.Size(153, 62);
- this.btnQueryDrugStoreInfo.TabIndex = 44;
- this.btnQueryDrugStoreInfo.Text = "2.药店库存查询";
- this.btnQueryDrugStoreInfo.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnQueryDrugStoreInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnQueryDrugStoreInfo.Click += new System.EventHandler(this.btnQueryDrugStoreInfo_Click);
- //
- // tbHiRxno
- //
- this.tbHiRxno.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.tbHiRxno.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.tbHiRxno.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbHiRxno.Location = new System.Drawing.Point(143, 28);
- this.tbHiRxno.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.tbHiRxno.MinimumSize = new System.Drawing.Size(1, 16);
- this.tbHiRxno.Name = "tbHiRxno";
- this.tbHiRxno.ShowText = false;
- this.tbHiRxno.Size = new System.Drawing.Size(292, 29);
- this.tbHiRxno.TabIndex = 9;
- this.tbHiRxno.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.tbHiRxno.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel9
- //
- this.uiLabel9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.uiLabel9.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel9.Location = new System.Drawing.Point(12, 29);
- this.uiLabel9.Name = "uiLabel9";
- this.uiLabel9.Size = new System.Drawing.Size(124, 23);
- this.uiLabel9.TabIndex = 8;
- this.uiLabel9.Text = "医保处方编号:";
- this.uiLabel9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel9.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // gbRxInfo
- //
- this.gbRxInfo.Controls.Add(this.dgvRxDetail);
- this.gbRxInfo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.gbRxInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.gbRxInfo.Location = new System.Drawing.Point(0, 0);
- this.gbRxInfo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.gbRxInfo.MinimumSize = new System.Drawing.Size(1, 1);
- this.gbRxInfo.Name = "gbRxInfo";
- this.gbRxInfo.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.gbRxInfo.Size = new System.Drawing.Size(1365, 677);
- this.gbRxInfo.TabIndex = 18;
- this.gbRxInfo.Text = "处方信息";
- this.gbRxInfo.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.gbRxInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dgvRxDetail
- //
- this.dgvRxDetail.AllowUserToAddRows = false;
- dataGridViewCellStyle136.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgvRxDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle136;
- this.dgvRxDetail.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.dgvRxDetail.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle137.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle137.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle137.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle137.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle137.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle137.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle137.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvRxDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle137;
- this.dgvRxDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle138.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle138.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle138.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle138.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle138.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle138.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle138.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgvRxDetail.DefaultCellStyle = dataGridViewCellStyle138;
- this.dgvRxDetail.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvRxDetail.EnableHeadersVisualStyles = false;
- this.dgvRxDetail.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvRxDetail.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
- this.dgvRxDetail.Location = new System.Drawing.Point(0, 32);
- this.dgvRxDetail.Name = "dgvRxDetail";
- dataGridViewCellStyle139.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle139.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle139.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle139.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle139.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle139.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle139.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvRxDetail.RowHeadersDefaultCellStyle = dataGridViewCellStyle139;
- dataGridViewCellStyle140.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle140.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle140.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle140.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle140.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.dgvRxDetail.RowsDefaultCellStyle = dataGridViewCellStyle140;
- this.dgvRxDetail.RowTemplate.Height = 23;
- this.dgvRxDetail.SelectedIndex = -1;
- this.dgvRxDetail.Size = new System.Drawing.Size(1365, 645);
- this.dgvRxDetail.TabIndex = 1;
- this.dgvRxDetail.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // PrescriptionCirculation
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1365, 717);
- this.Controls.Add(this.tc_Main);
- this.Name = "PrescriptionCirculation";
- this.Text = "医保处方流转";
- this.Load += new System.EventHandler(this.PrescriptionCirculation_Load);
- this.Shown += new System.EventHandler(this.PrescriptionCirculation_Shown);
- this.tc_Main.ResumeLayout(false);
- this.tb_PresUpload.ResumeLayout(false);
- this.gb_HISInsuReg.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgv_HISRegInfo)).EndInit();
- this.gb_Prescription.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgv_PrescriptionInfo)).EndInit();
- this.uiPanel1.ResumeLayout(false);
- this.tb_CancelPres.ResumeLayout(false);
- this.uiPanel2.ResumeLayout(false);
- this.uiPanel2.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgv_Master)).EndInit();
- this.tb_PresToExaInfo.ResumeLayout(false);
- this.uiPanel3.ResumeLayout(false);
- this.uiGroupBox2.ResumeLayout(false);
- this.tbc_3.ResumeLayout(false);
- this.tpAuthResult.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgv_PresAuditResults)).EndInit();
- this.tpTakeDrugResult.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvTakeDrugResult)).EndInit();
- this.panel1.ResumeLayout(false);
- this.uiGroupBox1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgv_PresUploadInfo)).EndInit();
- this.tb_PresInfo.ResumeLayout(false);
- this.uiGroupBox4.ResumeLayout(false);
- this.uiTabControl2.ResumeLayout(false);
- this.tp_PresMain.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgv_Main_tb)).EndInit();
- this.tp_DetlList.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgv_DetlList_tb)).EndInit();
- this.tp_Otpinfo.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgv_Otpinfo_tb)).EndInit();
- this.tp_DiseList.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgv_DiseList_tb)).EndInit();
- this.uiGroupBox3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgv_PresPreChekInfo)).EndInit();
- this.uiPanel4.ResumeLayout(false);
- this.tb_QueryDrug.ResumeLayout(false);
- this.gbStoreAndDrug.ResumeLayout(false);
- this.uiTabControl1.ResumeLayout(false);
- this.tabPage1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvStore)).EndInit();
- this.tabPage2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvInventory)).EndInit();
- this.uiPanel5.ResumeLayout(false);
- this.gbRxInfo.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvRxDetail)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private Sunny.UI.UITabControl tc_Main;
- private System.Windows.Forms.TabPage tb_PresUpload;
- private Sunny.UI.UIPanel uiPanel1;
- private Sunny.UI.UIButton btnClose;
- private Sunny.UI.UIButton btnPresUpload;
- private System.Windows.Forms.TabPage tb_CancelPres;
- private System.Windows.Forms.TabPage tb_PresInfo;
- private System.Windows.Forms.TabPage tb_PresToExaInfo;
- private Sunny.UI.UIButton btnUpload_Pre;
- private Sunny.UI.UIButton btnGetInfo;
- private Sunny.UI.UIGroupBox gb_Prescription;
- private Sunny.UI.UITextBox tb_CertNo;
- private Sunny.UI.UILabel uiLabel2;
- private Sunny.UI.UILabel uiLabel1;
- private Sunny.UI.UIDatetimePicker dtED;
- private Sunny.UI.UIDatetimePicker dtST;
- private Sunny.UI.UIDataGridView dgv_PrescriptionInfo;
- private Sunny.UI.UIGroupBox gb_HISInsuReg;
- private Sunny.UI.UIDataGridView dgv_Master;
- private Sunny.UI.UIButton btnElcSign;
- private Sunny.UI.UIGroupBox uiGroupBox1;
- private Sunny.UI.UIDataGridView dgv_PresUploadInfo;
- private Sunny.UI.UIGroupBox uiGroupBox4;
- private Sunny.UI.UITabControl uiTabControl2;
- private System.Windows.Forms.TabPage tp_PresMain;
- private Sunny.UI.UIDataGridView dgv_Main_tb;
- private System.Windows.Forms.TabPage tp_DetlList;
- private Sunny.UI.UIDataGridView dgv_DetlList_tb;
- private System.Windows.Forms.TabPage tp_Otpinfo;
- private Sunny.UI.UIDataGridView dgv_Otpinfo_tb;
- private System.Windows.Forms.TabPage tp_DiseList;
- private Sunny.UI.UIDataGridView dgv_DiseList_tb;
- private Sunny.UI.UIGroupBox uiGroupBox3;
- private Sunny.UI.UIDataGridView dgv_PresPreChekInfo;
- private Sunny.UI.UIPanel uiPanel4;
- private System.Windows.Forms.TabPage tb_QueryDrug;
- private Sunny.UI.UIPanel uiPanel2;
- public PTControl.DBLookupCombox cbx_DocInfo;
- private System.Windows.Forms.Label label4;
- private Sunny.UI.UIRichTextBox rtb_CancelReason;
- private Sunny.UI.UIRadioButtonGroup rg_type;
- private Sunny.UI.UILabel uiLabel3;
- private Sunny.UI.UILabel uiLabel4;
- private Sunny.UI.UIDatetimePicker dt_Et;
- private Sunny.UI.UIDatetimePicker dt_St;
- private Sunny.UI.UITextBox tb_CertnoQuery;
- private Sunny.UI.UIButton btnQuery;
- private Sunny.UI.UIButton uiButton3;
- private Sunny.UI.UIButton btnCancel;
- private Sunny.UI.UILabel uiLabel7;
- private Sunny.UI.UILabel uiLabel8;
- private Sunny.UI.UIDatetimePicker dt_ET_PPC;
- private Sunny.UI.UIDatetimePicker dt_ST_PPC;
- private Sunny.UI.UITextBox tb_PresCertNo;
- private Sunny.UI.UIPanel uiPanel3;
- private Sunny.UI.UIButton btnTakeDrug;
- private Sunny.UI.UIButton btn_QueryUploadInfo;
- private Sunny.UI.UIButton uiButton4;
- private Sunny.UI.UIButton uiButton5;
- private Sunny.UI.UIGroupBox uiGroupBox2;
- private Sunny.UI.UITabControl tbc_3;
- private System.Windows.Forms.TabPage tpAuthResult;
- private Sunny.UI.UIDataGridView dgv_PresAuditResults;
- private System.Windows.Forms.TabPage tpTakeDrugResult;
- private Sunny.UI.UIDataGridView dgvTakeDrugResult;
- private System.Windows.Forms.Panel panel1;
- private Sunny.UI.UILabel uiLabel17;
- private Sunny.UI.UITextBox tbRxUseStateName_3;
- private Sunny.UI.UILabel uiLabel16;
- private Sunny.UI.UITextBox tbRxUseStateNO_3;
- private Sunny.UI.UILabel label111;
- private Sunny.UI.UITextBox tbRxStateName_3;
- private Sunny.UI.UILabel uiLabel14;
- private Sunny.UI.UITextBox tbRxStateCode;
- private Sunny.UI.UILabel uiLabel13;
- private Sunny.UI.UITextBox tbSettlTime_3;
- private Sunny.UI.UILabel uiLabel12;
- private Sunny.UI.UITextBox tbHiRxNO_3;
- private Sunny.UI.UILabel uiLabel5;
- private Sunny.UI.UILabel uiLabel6;
- private Sunny.UI.UIDatetimePicker dt_ET_Process;
- private Sunny.UI.UIDatetimePicker dt_ST_Process;
- private Sunny.UI.UITextBox uiTextBox1;
- private Sunny.UI.UIButton tb_QueryPresPreCheck;
- private Sunny.UI.UIButton uiButton6;
- private Sunny.UI.UIButton btn_InsuQuery;
- private Sunny.UI.UIGroupBox gbStoreAndDrug;
- private Sunny.UI.UITabControl uiTabControl1;
- private System.Windows.Forms.TabPage tabPage1;
- private Sunny.UI.UIDataGridView dgvStore;
- private System.Windows.Forms.TabPage tabPage2;
- private Sunny.UI.UIDataGridView dgvInventory;
- private Sunny.UI.UIPanel uiPanel5;
- private Sunny.UI.UITextBox tbHiRxno;
- private Sunny.UI.UILabel uiLabel9;
- private Sunny.UI.UIGroupBox gbRxInfo;
- private Sunny.UI.UIDataGridView dgvRxDetail;
- private Sunny.UI.UIDataGridView dgv_HISRegInfo;
- private Sunny.UI.UIButton btnQueryRxInfo;
- private Sunny.UI.UIButton btnClose_5;
- private Sunny.UI.UIButton btnQueryDrugStoreInfo;
- }
- }
|