17 lines
898 B
XML
17 lines
898 B
XML
<Page
|
|
x:Class="WMstodon.NewStatusPage"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:WMstodon"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d"
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
|
|
|
<Grid>
|
|
<Button x:Name="BackButton" Content="Back" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Width="75"/>
|
|
<Button x:Name="PostButton" Content="Post" HorizontalAlignment="Right" Margin="0,10,10,0" VerticalAlignment="Top" Width="75"/>
|
|
<TextBox x:Name="StatusTextBox" Margin="10,47,10,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Height="200" PlaceholderText="Status Text"/>
|
|
|
|
</Grid>
|
|
</Page>
|