终端一体化运控平台
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

17 строки
887 B

  1. <UserControl x:Name="userControl" x:Class="WPFDemo.SiloPanel"
  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:WPFDemo"
  7. DataContext="{Binding RelativeSource={RelativeSource Self}}"
  8. mc:Ignorable="d" >
  9. <Viewbox >
  10. <Canvas Name="cvMain" Width="{Binding PanelWidth}" Height="{Binding PanelHeight}" Background="#B2C0E2E1">
  11. <StackPanel Orientation="Horizontal" Canvas.Top="5" Canvas.Left="5">
  12. <TextBlock FontSize="15" Text="{Binding Tips}"></TextBlock>
  13. </StackPanel>
  14. </Canvas>
  15. </Viewbox>
  16. </UserControl>