02 2014 档案
摘要:using System;using System.Collections.Generic;using System.ComponentModel;using System.Windows;using System.Windows.Input;using System.Windows.Markup;using System.Windows.Media;using System.Windows.Threading;using Drawing = System.Drawing;using Forms = System.Windows.Forms;namespace WpfApplication1{
阅读全文
摘要:绝对路径:img.Source=new BitmapImage(new Uri(@"d:\photo\backgrpunds\arch.jpb"));相对路径:img.Source=new BitmapImage(new Uri("images/winter.jpg", UriKind.Relative));
阅读全文
摘要:Expender 在展开时,Header 不展示;不展开时,展示 Header ...
阅读全文
摘要:汇总HL7 消息入出转消息ADTA01,A03,A04,A08免疫消息VXUV04电子处方消息NEWRX Messagev8.1 EDIFACT, v8.1 XML, v10.6 EDIFACT or 10.6 XML或NCPDP SCRIPT version 10.6, in either XML or EDI format检验消息ORUR01HL7 文档HL7 DocumentsHL7 CCD1) Inpatient/Ambulatory Summary2) Cancer registries (仅门诊)HL7 ASTM CCRC-CDAHITSP/C32 documentMU Stage
阅读全文
摘要://Get Registry item value of key, item name=name public string GetValue(RegistryKey rootKey, string path, string itemName) { if (string.IsNullOrEmpty(itemName) || rootKey == null || string.IsNullOrEmpty(path)) return null; try { ...
阅读全文
摘要:private ...
阅读全文
摘要:方法一:使用代码 #region Command private void HelpCanExecute(object sender, CanExecuteRoutedEventArgs e) { e.CanExecute = true; } private void HelpExecuted(object sender, ExecutedRoutedEventArgs e) { System.Diagnostics.Process.Start("htt...
阅读全文
摘要:OutAdmissionBookingEditor admissionBookingEditor = this.LayoutManager.OpenDialog ( this.GetResourceText("ResAdmissionBooking"), null, this.ActualWidth * 0.7, new object[] { "modification", res[0], this.functi...
阅读全文
摘要:private void txtSearchPatientName_KeyDown_1(object sender, KeyEventArgs e) { if (e.Key == Key.Enter) { string searchStr = txtSearchPatientName.EditValue as string; if (searchStr != null) { SearchPa...
阅读全文