48 lines
2.0 KiB
XML
48 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Page
|
|
x:Class="wakka.FeelsNavigationPage"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:wakka"
|
|
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>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
<Grid Grid.Row="0">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<SelectorBar Grid.Column="0" x:Name="feelsSelectorBar" SelectionChanged="SelectorChanged">
|
|
<SelectorBarItem x:Name="feedSelectorBarItem" Text="Feed" IsSelected="True" />
|
|
<!--<SelectorBarItem x:Name="usersSelectorBarItem" Text="Users" />-->
|
|
</SelectorBar>
|
|
<CommandBar Grid.Column="1" DefaultLabelPosition="Right" HorizontalAlignment="Right" x:Name="feelsCommandBar">
|
|
<AppBarButton Icon="Add" Label="New Feel" Click="OnFeelsCreateButton"/>
|
|
</CommandBar>
|
|
</Grid>
|
|
<Frame Grid.Row="1" x:Name="FeelsNavigationFrame" IsNavigationStackEnabled="False" />
|
|
<ContentDialog
|
|
x:Name="feelsComposeDialog"
|
|
Title="New Feels"
|
|
PrimaryButtonText="Post"
|
|
CloseButtonText="Cancel"
|
|
PrimaryButtonClick="OnFeelsSubmitButton">
|
|
<TextBox
|
|
PlaceholderText="Your feels here..."
|
|
Width="700"
|
|
Height="300"
|
|
TextWrapping="Wrap"
|
|
AcceptsReturn="True"
|
|
TextChanged="OnTextChanged"
|
|
x:Name="feelsComposeBox"/>
|
|
</ContentDialog>
|
|
</Grid>
|
|
</Page>
|