-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
100 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<Window x:Class="Obsidian.AboutWindow" | ||
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:Obsidian" | ||
mc:Ignorable="d" | ||
Title="About Obisidan" Height="300" Width="300" Icon="/Obsidian;component/icon.ico" WindowStartupLocation="CenterScreen"> | ||
<Grid> | ||
<StackPanel Orientation="Vertical"> | ||
<StackPanel> | ||
<StackPanel Orientation="Horizontal" Margin="10"> | ||
<Image Source="/Obsidian;component/icon.ico"> | ||
<Image.Effect> | ||
<DropShadowEffect RenderingBias="Quality" ShadowDepth="2"/> | ||
</Image.Effect> | ||
</Image> | ||
<TextBlock Text="OBSIDIAN" FontWeight="ExtraLight" FontStyle="Italic" TextDecorations="{x:Null}" TextAlignment="Center" FontSize="45" FontFamily="Segoe UI Light" Margin="10,0,0,0"> | ||
<TextBlock.Effect> | ||
<DropShadowEffect Direction="200" ShadowDepth="2"/> | ||
</TextBlock.Effect> | ||
</TextBlock> | ||
</StackPanel> | ||
<Canvas> | ||
<Line Stroke="Black" StrokeThickness="1" X1="292"> | ||
<Line.Effect> | ||
<DropShadowEffect Direction="0" ShadowDepth="1"/> | ||
</Line.Effect> | ||
</Line> | ||
</Canvas> | ||
</StackPanel> | ||
<TextBlock Margin="10" TextWrapping="Wrap"><Run Text="Obsidian was created as a standalone editor for WAD files"/><Run Text=" and uses the Fantome.League library"/><LineBreak/><Run Text="to edit the files"/><LineBreak/><Run/><LineBreak/><Run Text="Using modified WAD files requires to patch your executable"/></TextBlock> | ||
<StackPanel Margin="0,45,0,0"> | ||
<Canvas> | ||
<Line Stroke="Black" StrokeThickness="1" X1="292"> | ||
<Line.Effect> | ||
<DropShadowEffect Direction="0" ShadowDepth="1"/> | ||
</Line.Effect> | ||
</Line> | ||
</Canvas> | ||
<TextBlock Margin="10,3,10,0" Text="Created with <3 in C# by Crauzer"/> | ||
</StackPanel> | ||
</StackPanel> | ||
</Grid> | ||
</Window> |
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 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using System.Windows; | ||
using System.Windows.Controls; | ||
using System.Windows.Data; | ||
using System.Windows.Documents; | ||
using System.Windows.Input; | ||
using System.Windows.Media; | ||
using System.Windows.Media.Imaging; | ||
using System.Windows.Shapes; | ||
|
||
namespace Obsidian | ||
{ | ||
/// <summary> | ||
/// Interaction logic for AboutWindow.xaml | ||
/// </summary> | ||
public partial class AboutWindow : Window | ||
{ | ||
public AboutWindow() | ||
{ | ||
InitializeComponent(); | ||
} | ||
} | ||
} |