This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Grid | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> | |
<Border Width="400" VerticalAlignment="Center" Background="SkyBlue" Padding="8"> | |
<Grid Background="LightBlue"> | |
<Grid HorizontalAlignment="Left"> | |
<TextBlock Text="Team Name" VerticalAlignment="Top" FontSize="18"/> | |
<TextBlock Text="11 / 11 Alive players" VerticalAlignment="Bottom"/> | |
</Grid> | |
<TextBlock Text="24" HorizontalAlignment="Right" FontSize="70" Margin="0,-20,0,-18"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<StackPanel xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
FlowDirection="RightToLeft"> | |
<Path Stroke="Blue" StrokeThickness="4" | |
Data="M300,10L350,30M10,30L352,30M300,50L350,30"/> | |
<Path Stroke="Red" StrokeThickness="4" | |
Data="M300,10L350,30M10,30L352,30M300,50L350,30" | |
FlowDirection="RightToLeft"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<StackPanel xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
Orientation="Horizontal" FlowDirection="RightToLeft"> | |
<Image Source="House.jpg" Margin="5"/> | |
<Image Source="House.jpg" Margin="5" FlowDirection="RightToLeft"/> | |
</StackPanel> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> | |
<UniformGrid Rows="2" Columns="4" FlowDirection="RightToLeft"> | |
<Label Content="1" Background="Black"/> | |
<Label Content="2" Background="DarkGray"/> | |
<Label Content="3" Background="Teal"/> | |
<Label Content="4" Background="Navy"/> | |
<Label Content="5" Background="DarkOrchid"/> | |
<Label Content="6" Background="Maroon"/> | |
<Label Content="7" Background="DodgerBlue"/> | |
<Label Content="8" Background="IndianRed"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> | |
<ToolBar FlowDirection="RightToLeft" Height="50" DockPanel.Dock="Top"> | |
<ToolBar.Background> | |
<LinearGradientBrush StartPoint="0,0.5" EndPoint="1,1"> | |
<LinearGradientBrush.GradientStops> | |
<GradientStop Color="DarkRed" Offset="0" /> | |
<GradientStop Color="DarkBlue" Offset="0.3" /> | |
<GradientStop Color="LightBlue" Offset="0.6" /> | |
<GradientStop Color="White" Offset="1" /> | |
</LinearGradientBrush.GradientStops> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> | |
<StackPanel Margin="1"> | |
<StackPanel Background="DarkBlue"> | |
<TextBlock FontSize="20" FlowDirection="RightToLeft"> | |
<Run FlowDirection="LeftToRight" Foreground="LightBlue">العالم</Run> | |
<Run FlowDirection="LeftToRight" Foreground="Red">فى سلام</Run> | |
</TextBlock> | |
<TextBlock FontSize="20" FlowDirection="LeftToRight"> | |
<Run FlowDirection="RightToLeft" Foreground="LightBlue">العالم</Run> | |
<Run FlowDirection="RightToLeft" Foreground="Red">فى سلام</Run> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> | |
<StackPanel> | |
<TextBlock Background="DarkBlue" Foreground="LightBlue" FontSize="20" FlowDirection="LeftToRight"> | |
This is a Left-To-Right TextBlock | |
</TextBlock> | |
<TextBlock Background="LightBlue" Foreground="DarkBlue" FontSize="20" FlowDirection="RightToLeft"> | |
هذا كتلة نصية من اليمين إلى اليسار | |
</TextBlock> | |
</StackPanel> | |
</Page> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Grid | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
xmlns:noesis="clr-namespace:NoesisGUIExtensions;assembly=Noesis.GUI.Extensions" | |
Background="White"> | |
<Viewbox> | |
<Canvas Width="1480" Height="1480" Background="Transparent" Margin="0,0,0,-200"> | |
<Canvas.Resources> | |
<Storyboard x:Key="AnimLogo"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<UserControl | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | |
xmlns:local="clr-namespace:HelloWorld" | |
mc:Ignorable="d" | |
FontSize="24" | |
Background="#FF124C7A"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Grid | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" | |
Background="Black" | |
d:DesignWidth="758" d:DesignHeight="460"> | |
<Grid.Resources> | |
<Storyboard x:Key="anim" Duration="0:0:2.48"> | |
<DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="RenderTransform.Y" Storyboard.TargetName="Layer20"> |
NewerOlder