123456789101112131415 |
- <Page x:Class="NEIntelligentControl2.Pages.AGC.PageAGC"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:NEIntelligentControl2.Pages.AGC"
- mc:Ignorable="d"
- Title="AGCPage" Background="#002F5EB0" Loaded="Page_Loaded" Unloaded="Page_Unloaded">
- <Grid>
- <ScrollViewer x:Name="_sv" Template="{DynamicResource ScrollViewerTemplate}" ScrollChanged="_sv_ScrollChanged" VerticalScrollBarVisibility="Auto">
- <Grid x:Name="_GMain"/>
- </ScrollViewer>
- <Button x:Name="_bt" HorizontalAlignment="Right" VerticalAlignment="Top" Content="光 伏" Padding="12,3" Margin="20" Background="{x:Null}" Foreground="White" Click="Button_Click" Visibility="Collapsed"/>
- </Grid>
- </Page>
|