BackendIDExportView.xaml 1.2 KB

12345678910111213141516171819
  1. <UserControl x:Class="MECF.Framework.RT.Core.Backend.BackendIDExportView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:MECF.Framework.RT.Core.Backend"
  7. mc:Ignorable="d"
  8. d:DesignHeight="600" d:DesignWidth="1000">
  9. <Canvas>
  10. <Button x:Name="btExportEcid" Content="Export ECID" Command="{Binding ExportEcidCommand}" Width="150" Height="30" Canvas.Left="100" Canvas.Top="100"/>
  11. <Button x:Name="btExportSvid" Content="Export Chamber SVID" Command="{Binding ExportSvidCommand}" Width="150" Height="30" Canvas.Left="100" Canvas.Top="150"/>
  12. <Button x:Name="btExportTMSvid" Content="Export TM SVID" Command="{Binding ExportTMSvidCommand}" Width="150" Height="30" Canvas.Left="100" Canvas.Top="200"/>
  13. <Button x:Name="btExportAlid" Content="Export ALID" Command="{Binding ExportAlidCommand}" Width="150" Height="30" Canvas.Left="100" Canvas.Top="250" Visibility="Hidden"/>
  14. </Canvas>
  15. </UserControl>