mirror of
https://github.com/izzy2lost/cpython.git
synced 2026-03-10 11:29:24 -07:00
30 lines
1.4 KiB
XML
30 lines
1.4 KiB
XML
<Page
|
|
x:Class="python34app.PyShell"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:python34app"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d">
|
|
<Page.BottomAppBar>
|
|
<AppBar Padding="10,0,10,0">
|
|
<Grid>
|
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
|
|
<Button
|
|
Style="{StaticResource RefreshAppBarButtonStyle}" Click="do_restart"><AutomationProperties.Name>Restart Interpreter</AutomationProperties.Name></Button>
|
|
<Button
|
|
|
|
Style="{StaticResource DownloadAppBarButtonStyle}" Click="run_file"><AutomationProperties.Name>Run File</AutomationProperties.Name></Button>
|
|
</StackPanel>
|
|
</Grid>
|
|
</AppBar>
|
|
</Page.BottomAppBar>
|
|
<Grid x:Name="ContainerGrid" RenderTransformOrigin="0.5,0.5" SizeChanged="SizeChanged">
|
|
<ScrollViewer x:Name="scrollView" HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Auto">
|
|
<RichTextBlock x:Name="textBlock1" HorizontalAlignment="Left" VerticalAlignment="Top" Loaded="Loaded">
|
|
</RichTextBlock>
|
|
</ScrollViewer>
|
|
|
|
</Grid>
|
|
</Page>
|