|
@@ -4,7 +4,9 @@
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
- xmlns:local="clr-namespace:PixiEditor.Views.UserControls" xmlns:converters="clr-namespace:PixiEditor.Helpers.Converters"
|
|
|
|
|
|
+ xmlns:local="clr-namespace:PixiEditor.Views.UserControls"
|
|
|
|
+ xmlns:converters="clr-namespace:PixiEditor.Helpers.Converters"
|
|
|
|
+ xmlns:views="clr-namespace:PixiEditor.Views"
|
|
mc:Ignorable="d"
|
|
mc:Ignorable="d"
|
|
d:DesignWidth="300"
|
|
d:DesignWidth="300"
|
|
x:Name="uc">
|
|
x:Name="uc">
|
|
@@ -45,26 +47,29 @@
|
|
<Grid Margin="0,5">
|
|
<Grid Margin="0,5">
|
|
<StackPanel Orientation="Vertical">
|
|
<StackPanel Orientation="Vertical">
|
|
<Grid Margin="0,15" Background="#262729" Height="1"/>
|
|
<Grid Margin="0,15" Background="#262729" Height="1"/>
|
|
- <TextBlock FontWeight="Black" FontSize="12" Foreground="White" Margin="0,0,0,10">ABOUT ME</TextBlock>
|
|
|
|
- <TextBlock Foreground="White" Text="Use me to display your .pixi files in Discord.
Start by sending a file in any appropriate channel"></TextBlock>
|
|
|
|
|
|
+ <TextBlock FontWeight="Black" FontSize="12" Foreground="White" Margin="0,0,0,10" views:Translator.Key="ABOUT_ME" d:Text="ABOUT ME"/>
|
|
|
|
+ <TextBlock Foreground="White" d:Text="Use me to display your .pixi files in Discord. Start by sending a file in any appropriate channel"
|
|
|
|
+ views:Translator.Key="BOT_DESCRIPTION"/>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Grid>
|
|
<Grid Margin="0,5">
|
|
<Grid Margin="0,5">
|
|
<StackPanel Orientation="Vertical">
|
|
<StackPanel Orientation="Vertical">
|
|
- <TextBlock FontWeight="Black" FontSize="12" Foreground="White" Margin="0,0,0,10">DISCORD MEMBER SINCE</TextBlock>
|
|
|
|
- <TextBlock Foreground="White" Text="Oct 09, 2020"></TextBlock>
|
|
|
|
|
|
+ <TextBlock FontWeight="Black" FontSize="12" Foreground="White" Margin="0,0,0,10" views:Translator.Key="MEMBER_SINCE" d:Text="DISCORD MEMBER SINCE"/>
|
|
|
|
+ <TextBlock Foreground="White" Text="Mar 24, 2023"></TextBlock>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Grid>
|
|
<Grid Visibility="{Binding ElementName=uc, Path=IsPlaying, Converter={BoolToVisibilityConverter}}" Margin="0,5, 0, 0">
|
|
<Grid Visibility="{Binding ElementName=uc, Path=IsPlaying, Converter={BoolToVisibilityConverter}}" Margin="0,5, 0, 0">
|
|
<StackPanel Orientation="Vertical">
|
|
<StackPanel Orientation="Vertical">
|
|
- <TextBlock FontWeight="Black" FontSize="12" Foreground="White" Margin="0,0,0,10">PLAYING A "GAME"</TextBlock>
|
|
|
|
|
|
+ <TextBlock FontWeight="Black" FontSize="12" Foreground="White" Margin="0,0,0,10" views:Translator.Key="DISCORD_PLAYING" d:Text="PLAYING A GAME"/>
|
|
<StackPanel Orientation="Horizontal">
|
|
<StackPanel Orientation="Horizontal">
|
|
<Image Source="../../Images/PixiEditorLogo.png" Height="70"/>
|
|
<Image Source="../../Images/PixiEditorLogo.png" Height="70"/>
|
|
<StackPanel Margin="15,0,0,0" VerticalAlignment="Center">
|
|
<StackPanel Margin="15,0,0,0" VerticalAlignment="Center">
|
|
<TextBlock Foreground="White" FontSize="12" FontWeight="SemiBold">PixiEditor</TextBlock>
|
|
<TextBlock Foreground="White" FontSize="12" FontWeight="SemiBold">PixiEditor</TextBlock>
|
|
- <TextBlock Foreground="White" FontSize="12" Text="{Binding ElementName=uc, Path=Detail}" Visibility="{Binding ElementName=uc, Path=Detail, Converter={converters:EmptyStringToVisibilityConverter}}"/>
|
|
|
|
- <TextBlock Foreground="White" FontSize="12" Text="{Binding ElementName=uc, Path=State}" Visibility="{Binding ElementName=uc, Path=State, Converter={converters:EmptyStringToVisibilityConverter}}"/>
|
|
|
|
- <TextBlock Foreground="White" FontSize="12">00:00 elapsed</TextBlock>
|
|
|
|
|
|
+ <TextBlock Foreground="White" FontSize="12" Text="{Binding ElementName=uc, Path=Detail}" Visibility="{Binding ElementName=uc,
|
|
|
|
+ Path=Detail, Converter={converters:EmptyStringToVisibilityConverter}}"/>
|
|
|
|
+ <TextBlock Foreground="White" FontSize="12" Text="{Binding ElementName=uc, Path=State}" Visibility="{Binding ElementName=uc,
|
|
|
|
+ Path=State, Converter={converters:EmptyStringToVisibilityConverter}}"/>
|
|
|
|
+ <TextBlock Foreground="White" FontSize="12" views:Translator.Key="DISCORD_ELAPSED" d:Text="00:00 elapsed"/>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</StackPanel>
|