mirror of https://github.com/icsharpcode/ILSpy.git
8 changed files with 181 additions and 52 deletions
@ -0,0 +1,23 @@
@@ -0,0 +1,23 @@
|
||||
<Window x:Class="ICSharpCode.ILSpy.AboutDialog" |
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
xmlns:local="clr-namespace:ICSharpCode.ILSpy" |
||||
Title="About ILSpy" |
||||
Style="{DynamicResource DialogWindow}" |
||||
ResizeMode="NoResize" |
||||
WindowStartupLocation="CenterOwner" |
||||
SizeToContent="WidthAndHeight"> |
||||
<StackPanel Margin="8"> |
||||
<TextBlock TextWrapping="WrapWithOverflow" FontSize="12"> |
||||
ILSpy version <Run Text="{x:Static local:AboutDialog.Version}"/>.<LineBreak/> |
||||
Copyright 2011 by AlphaSierraPapa for the SharpDevelop Team.<LineBreak/> |
||||
Website: <Hyperlink NavigateUri="http://www.ilspy.net/">http://www.ilspy.net/</Hyperlink><LineBreak/> |
||||
<LineBreak/> |
||||
This software makes use of the following open-source projects:<LineBreak/> |
||||
<Hyperlink NavigateUri="http://www.mono-project.com/Cecil">Mono.Cecil</Hyperlink> (reading IL)<LineBreak/> |
||||
<Hyperlink NavigateUri="http://www.avalonedit.net/">ICSharpCode.AvalonEdit</Hyperlink><LineBreak/> |
||||
<Hyperlink NavigateUri="http://www.sharpdevelop.net/">SharpDevelop</Hyperlink> components (SharpTreeView, NRefactory)<LineBreak/> |
||||
</TextBlock> |
||||
<Button IsCancel="True" MinWidth="73" HorizontalAlignment="Center">Close</Button> |
||||
</StackPanel> |
||||
</Window> |
@ -0,0 +1,30 @@
@@ -0,0 +1,30 @@
|
||||
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
|
||||
// This code is distributed under MIT X11 license (for details please see \doc\license.txt)
|
||||
|
||||
using System; |
||||
using System.Collections.Generic; |
||||
using System.Text; |
||||
using System.Windows; |
||||
using System.Windows.Controls; |
||||
using System.Windows.Data; |
||||
using System.Windows.Documents; |
||||
using System.Windows.Input; |
||||
using System.Windows.Media; |
||||
|
||||
namespace ICSharpCode.ILSpy |
||||
{ |
||||
/// <summary>
|
||||
/// Interaction logic for AboutDialog.xaml
|
||||
/// </summary>
|
||||
public partial class AboutDialog : Window |
||||
{ |
||||
public AboutDialog() |
||||
{ |
||||
InitializeComponent(); |
||||
} |
||||
|
||||
public static string Version { |
||||
get { return typeof(AboutDialog).Assembly.GetName().Version.ToString(); } |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue