终端一体化运控平台
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.
 
 
 

18 lines
770 B

  1. <Window x:Class="WPFDemo.Window2"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:WPFDemo"
  7. mc:Ignorable="d"
  8. Title="Window2" Height="450" Width="800">
  9. <Canvas>
  10. <Canvas.Background>
  11. <ImageBrush ImageSource="/bj.png"/>
  12. </Canvas.Background>
  13. <local:TheListBox Canvas.Left="180" Canvas.Top="100" HorizontalAlignment="Right" Grid.Row="1"></local:TheListBox>
  14. <Button Width="100" Height="30" Click="Button_Click"/>
  15. </Canvas>
  16. </Window>