PageAGC.xaml 979 B

123456789101112131415
  1. <Page x:Class="NEIntelligentControl2.Pages.AGC.PageAGC"
  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:NEIntelligentControl2.Pages.AGC"
  7. mc:Ignorable="d"
  8. Title="AGCPage" Background="#002F5EB0" Loaded="Page_Loaded" Unloaded="Page_Unloaded">
  9. <Grid>
  10. <ScrollViewer x:Name="_sv" Template="{DynamicResource ScrollViewerTemplate}" ScrollChanged="_sv_ScrollChanged" VerticalScrollBarVisibility="Auto">
  11. <Grid x:Name="_GMain"/>
  12. </ScrollViewer>
  13. <Button x:Name="_bt" HorizontalAlignment="Right" VerticalAlignment="Top" Content="光 伏" Padding="12,3" Margin="20" Background="{x:Null}" Foreground="White" Click="Button_Click" Visibility="Collapsed"/>
  14. </Grid>
  15. </Page>