本文整理汇总了C#中YellowstonePathology.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# YellowstonePathology.ToString方法的具体用法?C# YellowstonePathology.ToString怎么用?C# YellowstonePathology.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类YellowstonePathology
的用法示例。
在下文中一共展示了YellowstonePathology.ToString方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ContainerPaperLabel
public ContainerPaperLabel(YellowstonePathology.Business.BarcodeScanning.ContainerBarcode containerBarcode)
{
this.m_ContainerBarCode = containerBarcode;
this.m_GUIDFirstLine = containerBarcode.ToString().Substring(0, 14);
this.m_GUIDSecondLine = containerBarcode.ToString().Substring(14, 14);
this.m_GUIDThirdLine = containerBarcode.ToString().Substring(28);
}
示例2: ItemsReceivedPage_ContainerScannedReceived
private void ItemsReceivedPage_ContainerScannedReceived(object sender, YellowstonePathology.Business.BarcodeScanning.ContainerBarcode containerBarcode)
{
this.ReceiveContainerScan(containerBarcode.ToString());
}
示例3: ContainerScanReceived
private void ContainerScanReceived(YellowstonePathology.Business.BarcodeScanning.ContainerBarcode containerBarcode)
{
this.Dispatcher.Invoke(System.Windows.Threading.DispatcherPriority.Input, new System.Threading.ThreadStart(delegate()
{
this.UseThisContainer(this, containerBarcode.ToString());
}
));
}
示例4: ContainerScanReceived
private void ContainerScanReceived(YellowstonePathology.Business.BarcodeScanning.ContainerBarcode containerBarcode)
{
this.Dispatcher.BeginInvoke(System.Windows.Threading.DispatcherPriority.Input, new System.Threading.ThreadStart(delegate ()
{
this.m_BarcodeScanPort.ContainerScanReceived -= ContainerScanReceived;
if (this.ContainerExistsInAccessionOrder(containerBarcode.ToString()) == true)
{
YellowstonePathology.Business.User.SystemIdentity systemIdentity = Business.User.SystemIdentity.Instance;
this.m_LoginPageWindow = new LoginPageWindow();
SpecimenOrderDetailsPath specimenOrderDetailsPath = new SpecimenOrderDetailsPath(this.m_LoginUI.AccessionOrder, containerBarcode.ToString(), this.m_LoginPageWindow.PageNavigator);
specimenOrderDetailsPath.Finish += new SpecimenOrderDetailsPath.FinishEventHandler(SpecimenOrderDetailsPath_Finish);
specimenOrderDetailsPath.Start();
this.m_LoginPageWindow.ShowDialog();
}
else
{
if (this.m_LoginUI.GetAccessionOrderByContainerId(containerBarcode.ToString()) == true)
{
if (this.ListViewAccessionOrders.Items.Count > 0)
{
this.ListViewAccessionOrders.SelectedItem = this.ListViewAccessionOrders.Items[0];
}
}
}
this.m_BarcodeScanPort.ContainerScanReceived += ContainerScanReceived;
}
));
}
示例5: ContainerScanReceived
private void ContainerScanReceived(YellowstonePathology.Business.BarcodeScanning.ContainerBarcode containerBarcode)
{
this.Dispatcher.BeginInvoke(System.Windows.Threading.DispatcherPriority.Input, new System.Threading.ThreadStart(delegate()
{
if (string.IsNullOrEmpty(this.m_ClientOrderDetail.ContainerId) == true)
{
this.m_ClientOrderDetail.ContainerIdBinding = containerBarcode.ToString();
this.m_ClientOrderDetail.SetFixationStartTime();
this.m_ClientOrderDetail.Receive();
}
else
{
MessageBox.Show("Unable to set the Container ID because it is already set.");
}
}
));
}