终端一体化运控平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

MainWindow.xaml 884 B

il y a 1 an
il y a 1 an
il y a 1 an
il y a 1 an
il y a 1 an
il y a 1 an
123456789101112131415161718192021222324252627282930
  1. <Window
  2. x:Class="Test.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:Test"
  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. <StackPanel
  14. Margin="10"
  15. HorizontalAlignment="Center"
  16. VerticalAlignment="Center">
  17. <TextBox
  18. Width="150"
  19. Height="30"
  20. Margin="0 10" x:Name="textBox"/>
  21. <Button
  22. Width="150"
  23. Height="30"
  24. Click="Button_Click_1"
  25. Content="发送" />
  26. </StackPanel>
  27. </Grid>
  28. </Window>