-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- New Layout - New Button Style - Minor TextBox update - New Color scheme - Copyright notice - Custom minimize/close buttons - New Window style
- Loading branch information
Showing
12 changed files
with
512 additions
and
77 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> | ||
<Style BasedOn="{StaticResource ResourceKey = {x:Type ToggleButton}}" | ||
TargetType="{x:Type RadioButton}" | ||
x:Key="MenuButtonTheme"> | ||
<Style.Setters> | ||
<Setter Property="Template"> | ||
<Setter.Value> | ||
<ControlTemplate TargetType="RadioButton"> | ||
<Grid VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Background="{TemplateBinding Background}"> | ||
<TextBlock Text="{TemplateBinding Property=Content}" VerticalAlignment="Center" Margin="50,0,0,0" /> | ||
</Grid> | ||
</ControlTemplate> | ||
</Setter.Value> | ||
</Setter> | ||
<Setter Property="Background" Value="Transparent" /> | ||
<Setter Property="BorderThickness" Value="0" /> | ||
|
||
</Style.Setters> | ||
|
||
<Style.Triggers> | ||
<Trigger Property="IsChecked" Value="True"> | ||
<Setter Property="Background" Value="#22202f"/> | ||
</Trigger> | ||
</Style.Triggers> | ||
</Style> | ||
</ResourceDictionary> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> | ||
<Style TargetType="{x:Type TextBox}" x:Key="ModernTextBox"> | ||
<Setter Property="Template"> | ||
<Setter.Value> | ||
<ControlTemplate TargetType="{x:Type TextBox}"> | ||
<Border CornerRadius="5" Background="#353340" Width="150" Height="20"> | ||
<Grid> | ||
<Rectangle StrokeThickness="1"/> | ||
<TextBox Margin="1" Text="{TemplateBinding Text}" | ||
BorderThickness="0" | ||
Background="Transparent" | ||
VerticalAlignment="Center" | ||
Padding="5" | ||
Foreground="#CFCFCF" | ||
x:Name="SearchBox"/> | ||
|
||
<TextBlock IsHitTestVisible="False" | ||
Text="You can probably type in here :)" | ||
VerticalAlignment="Center" | ||
HorizontalAlignment="Left" | ||
Margin="10,0,0,0" | ||
FontSize="11" | ||
Foreground="DarkGray" | ||
Grid.Column="1"> | ||
|
||
<TextBlock.Style> | ||
<Style TargetType="{x:Type TextBlock}"> | ||
<Style.Triggers> | ||
<DataTrigger Binding="{Binding Text,ElementName=SearchBox}" Value=""> | ||
<Setter Property="Visibility" Value="Visible" /> | ||
</DataTrigger> | ||
</Style.Triggers> | ||
<Setter Property="Visibility" Value="Hidden"/> | ||
</Style> | ||
</TextBlock.Style> | ||
|
||
</TextBlock> | ||
</Grid> | ||
</Border> | ||
</ControlTemplate> | ||
</Setter.Value> | ||
</Setter> | ||
</Style> | ||
</ResourceDictionary> |
Oops, something went wrong.