Сommon improvements
This commit is contained in:
@@ -17,7 +17,7 @@
|
|||||||
</StackPanel>
|
</StackPanel>
|
||||||
<TextBlock Text="Tell us about it" FontSize="18" Margin="0,10,0,0"/>
|
<TextBlock Text="Tell us about it" FontSize="18" Margin="0,10,0,0"/>
|
||||||
<TextBlock Text="Summarize your issue" Margin="0,10,0,0"/>
|
<TextBlock Text="Summarize your issue" Margin="0,10,0,0"/>
|
||||||
<TextBox Width="1000" HorizontalAlignment="Left"/>
|
<TextBox Width="1000" MaxWidth="1000" HorizontalAlignment="Left"/>
|
||||||
<TextBlock Text="Give us more detail (optional)" Margin="0,10,0,0"/>
|
<TextBlock Text="Give us more detail (optional)" Margin="0,10,0,0"/>
|
||||||
<TextBox Width="1000" HorizontalAlignment="Left" Height="200"/>
|
<TextBox Width="1000" HorizontalAlignment="Left" Height="200"/>
|
||||||
<Button Content="Submit feedback" Margin="0,10,0,0"/>
|
<Button Content="Submit feedback" Margin="0,10,0,0"/>
|
||||||
|
|||||||
@@ -31,7 +31,7 @@
|
|||||||
Grid.Column="0"
|
Grid.Column="0"
|
||||||
Click="menuButton_Click"
|
Click="menuButton_Click"
|
||||||
HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>
|
HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>
|
||||||
<TextBlock Grid.Column="1" Text="Home" FontSize="20" FontWeight="Bold" Margin="5, 0, 0, 0" HorizontalAlignment="Left" VerticalAlignment="Center" Foreground="White"/>
|
<TextBlock Grid.Column="1" Text="Home" FontSize="20" FontWeight="Bold" Margin="5, 0, 0, 0" HorizontalAlignment="Left" VerticalAlignment="Center" Foreground="White" Name="headerText"/>
|
||||||
<Button Name="goLive" Grid.Column="2" ToolTipService.ToolTip="Go to Live!" Visibility="Collapsed"
|
<Button Name="goLive" Grid.Column="2" ToolTipService.ToolTip="Go to Live!" Visibility="Collapsed"
|
||||||
FontFamily="Segoe MDL2 Assets" Content="" Foreground="White"
|
FontFamily="Segoe MDL2 Assets" Content="" Foreground="White"
|
||||||
Width="50" Height="50" Background="#00000000" RelativePanel.LeftOf="searchField"/>
|
Width="50" Height="50" Background="#00000000" RelativePanel.LeftOf="searchField"/>
|
||||||
|
|||||||
@@ -184,24 +184,27 @@ namespace FoxTube
|
|||||||
if(topHamburger.SelectedIndex == 0)
|
if(topHamburger.SelectedIndex == 0)
|
||||||
{
|
{
|
||||||
content.Navigate(typeof(Home));
|
content.Navigate(typeof(Home));
|
||||||
|
headerText.Text = "Home";
|
||||||
menu.DisplayMode = SplitViewDisplayMode.CompactInline;
|
menu.DisplayMode = SplitViewDisplayMode.CompactInline;
|
||||||
menu.IsPaneOpen = true;
|
menu.IsPaneOpen = true;
|
||||||
}
|
}
|
||||||
else if (bottomHaburger.SelectedIndex == 3)
|
else if (bottomHaburger.SelectedIndex == 3)
|
||||||
{
|
{
|
||||||
content.Navigate(typeof(Settings));
|
content.Navigate(typeof(Settings));
|
||||||
|
headerText.Text = "Settings";
|
||||||
menu.DisplayMode = SplitViewDisplayMode.CompactOverlay;
|
menu.DisplayMode = SplitViewDisplayMode.CompactOverlay;
|
||||||
menu.IsPaneOpen = false;
|
menu.IsPaneOpen = false;
|
||||||
}
|
}
|
||||||
else if (bottomHaburger.SelectedIndex == 0)
|
else if (bottomHaburger.SelectedIndex == 0)
|
||||||
{
|
{
|
||||||
content.Navigate(typeof(Channel));
|
content.Navigate(typeof(Channel));
|
||||||
|
headerText.Text = "Channel overview";
|
||||||
menu.DisplayMode = SplitViewDisplayMode.CompactOverlay;
|
menu.DisplayMode = SplitViewDisplayMode.CompactOverlay;
|
||||||
menu.IsPaneOpen = false;
|
menu.IsPaneOpen = false;
|
||||||
}
|
}
|
||||||
else if (bottomHaburger.SelectedIndex == 2)
|
else if (bottomHaburger.SelectedIndex == 2)
|
||||||
{
|
{
|
||||||
bottomHaburger.SelectedItem = null;
|
topHamburger.SelectedIndex = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
d:DesignHeight="290"
|
d:DesignHeight="290"
|
||||||
d:DesignWidth="384">
|
d:DesignWidth="384">
|
||||||
|
|
||||||
<Grid Background="WhiteSmoke">
|
<Grid Background="WhiteSmoke" BorderBrush="LightGray" BorderThickness="1" Width="384" Height="290" VerticalAlignment="Top">
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="*"/>
|
<RowDefinition Height="*"/>
|
||||||
<RowDefinition Height="75"/>
|
<RowDefinition Height="75"/>
|
||||||
|
|||||||
@@ -7,13 +7,14 @@
|
|||||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
mc:Ignorable="d">
|
mc:Ignorable="d">
|
||||||
|
|
||||||
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}" Padding="5">
|
||||||
<Grid.ColumnDefinitions>
|
<Grid.ColumnDefinitions>
|
||||||
<ColumnDefinition Width="384"/>
|
<ColumnDefinition Width="*"/>
|
||||||
<ColumnDefinition Width="384"/>
|
<ColumnDefinition Width="*"/>
|
||||||
<ColumnDefinition Width="384"/>
|
<ColumnDefinition Width="*"/>
|
||||||
<ColumnDefinition Width="384"/>
|
<ColumnDefinition Width="*"/>
|
||||||
<ColumnDefinition Width="384"/>
|
<ColumnDefinition Width="*"/>
|
||||||
</Grid.ColumnDefinitions>
|
</Grid.ColumnDefinitions>
|
||||||
|
<local:VideoCard/>
|
||||||
</Grid>
|
</Grid>
|
||||||
</Page>
|
</Page>
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 1.8 KiB |
Reference in New Issue
Block a user