终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

31 line
992 B

  1. <Window
  2. x:Class="WpfApp1.MainWindow"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:WpfApp1"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. Title="MainWindow"
  9. Width="800"
  10. Height="450"
  11. mc:Ignorable="d">
  12. <Grid>
  13. <Button
  14. Width="100"
  15. Height="30"
  16. Margin="36,24,664,381"
  17. Content="连接" Click="Button_Click" />
  18. <Button
  19. Width="100"
  20. Height="30"
  21. Margin="167,24,533,381"
  22. Content="上电" Click="Button_Click_1" />
  23. <Button
  24. Width="100"
  25. Height="30"
  26. Margin="300,24,400,381"
  27. Content="使能" Click="Button_Click_2" />
  28. <TextBox Name="text" Height="30" Margin="36,80,400,325"/>
  29. </Grid>
  30. </Window>