<Grid x:Name="LayoutRoot" Background="Transparent">
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>

        <!--TitlePanel 包含应用程序的名称和页标题-->
        <StackPanel Grid.Row="0" Margin="12,17,0,28">
            <TextBlock Text="我的应用程序" Style="{StaticResource PhoneTextNormalStyle}"/>
            <TextBlock Text="页面名称" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
        </StackPanel>

        <!--ContentPanel - 在此处放置其他内容-->
        <Grid x:Name="ContentPanel" Grid.Row="1" Margin="24,10,0,-10">
            <TextBlock Margin="19,46,345,522" Style="{StaticResource PhoneTextTitle1Style}" FontSize="25" Text="Key"/>
            <TextBlock Margin="19,112,345,456" Style="{StaticResource PhoneTextTitle1Style}" FontSize="25" Text="Value"/>
            <TextBox x:Name="text_Key" HorizontalAlignment="Left" Height="58" Margin="116,38,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="260" FontSize="15"/>
            <TextBox x:Name="text_Value" HorizontalAlignment="Left" Height="58" Margin="116,101,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="260" FontSize="15"/>
            <Button x:Name="btn_Save" Content="保存" HorizontalAlignment="Left" Height="67" Margin="19,200,0,0" VerticalAlignment="Top" Width="122"/>
            <Button x:Name="btn_Delete" Content="删除" HorizontalAlignment="Left" Height="67" Margin="146,200,0,0" VerticalAlignment="Top" Width="122"/>
            <Button x:Name="deleteall" Content="清空所有" HorizontalAlignment="Left" Height="67" Margin="289,200,0,0" VerticalAlignment="Top" Width="144"/>
            <ListBox x:Name="lstKeys" Margin="31,267,35,69"/>
        </Grid>
    </Grid>
View Code

相关文章:

  • 2022-12-23
  • 2021-05-21
  • 2021-07-05
  • 2021-08-07
  • 2021-11-29
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-09-20
  • 2021-09-12
  • 2021-08-14
  • 2022-02-04
相关资源
相似解决方案