|
|
|
@ -21,16 +21,16 @@
@@ -21,16 +21,16 @@
|
|
|
|
|
${Path} -> Full path of the file |
|
|
|
|
--> |
|
|
|
|
<Files> |
|
|
|
|
<File name="${FullName}" language="XML" buildAction="Page"><![CDATA[<Page x:Class="${StandardNamespace}.${FileNameWithoutExtension}" |
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
|
|
|
Title="${FileNameWithoutExtension}" |
|
|
|
|
> |
|
|
|
|
<Grid> |
|
|
|
|
|
|
|
|
|
</Grid> |
|
|
|
|
<File name="${FullName}" language="XML" buildAction="Page"><![CDATA[<Page x:Class="${StandardNamespace}.${ClassName}" |
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
|
|
|
Title="${FileNameWithoutExtension}"> |
|
|
|
|
<Grid> |
|
|
|
|
|
|
|
|
|
</Grid> |
|
|
|
|
</Page>]]></File> |
|
|
|
|
<File name="${FullName}.cs" language="C#" DependentUpon="${FileName}" SubType="Code"><![CDATA[using System; |
|
|
|
|
<File name="${FullName}.cs" language="C#" DependentUpon="${FileName}" SubType="Code"><![CDATA[${StandardHeader.C#} |
|
|
|
|
using System; |
|
|
|
|
using System.Collections.Generic; |
|
|
|
|
using System.Text; |
|
|
|
|
using System.Windows; |
|
|
|
@ -39,24 +39,19 @@ using System.Windows.Data;
@@ -39,24 +39,19 @@ using System.Windows.Data;
|
|
|
|
|
using System.Windows.Documents; |
|
|
|
|
using System.Windows.Input; |
|
|
|
|
using System.Windows.Media; |
|
|
|
|
using System.Windows.Media.Imaging; |
|
|
|
|
using System.Windows.Navigation; |
|
|
|
|
using System.Windows.Shapes; |
|
|
|
|
|
|
|
|
|
namespace ${StandardNamespace} |
|
|
|
|
{ |
|
|
|
|
/// <summary> |
|
|
|
|
/// Interaction logic for ${FileName} |
|
|
|
|
/// </summary> |
|
|
|
|
|
|
|
|
|
public partial class ${FileNameWithoutExtension} : Page |
|
|
|
|
{ |
|
|
|
|
public ${FileNameWithoutExtension}() |
|
|
|
|
{ |
|
|
|
|
InitializeComponent(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
/// <summary> |
|
|
|
|
/// Interaction logic for ${FileName} |
|
|
|
|
/// </summary> |
|
|
|
|
public partial class ${ClassName} : Page |
|
|
|
|
{ |
|
|
|
|
public ${ClassName}() |
|
|
|
|
{ |
|
|
|
|
InitializeComponent(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}]]></File> |
|
|
|
|
</Files> |
|
|
|
|
|
|
|
|
|