private void Set_PationInfoPanel(PationInfo _pationinfo) { this.PatNameTextBt.Text = _pationinfo.Name; this.PatGenderCB.Text = _pationinfo.Gender; this.PatIDTextBt.Text = _pationinfo.ID; this.PatAgeTextBt.Text = _pationinfo.Age; this.SingleHandAdvanCB.Text = _pationinfo.Handedness; }
private void Set_DetectionInfoPanel(NatFileInfo _nationfileinfo, PationInfo _pationinfo) { this.DetectionTextBt.Text = _pationinfo.ID; this.RequesterTextBt.Text = _pationinfo.Name; this.TechnicianTextBt.Text = _pationinfo.ResidentDoctor; this.PhysicianTextBT.Text = _pationinfo.OperateDoctor; this.PationStateTextBt.Text = _pationinfo.State; this.PharmacyTextBt.Text = _pationinfo.Medicine; this.DetectionRemarksTextBt.Text = _pationinfo.Diagnosis; this.FilePathTextBt.Text = _pationinfo.FilePath; }
public PlaybackForm(NationFileInfo EegFile) { InitializeComponent(); natfileinfo = new NatFileInfo(EegFile.NedFullName); pationinfo = new PationInfo(EegFile.NedFullName, natfileinfo.PatOff); _Page = 0; try { _nfi = EegFile; } catch { } }