|
|
|
@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
|
|
|
|
|
|
|
|
|
|
<!-- Actions --> |
|
|
|
|
<Actions> |
|
|
|
|
<Open filename = "Window1.xaml"/> |
|
|
|
|
<Open filename = "MainWindow.xaml"/> |
|
|
|
|
</Actions> |
|
|
|
|
|
|
|
|
|
<Project language = "VBNet" defaultPlatform="x86"> |
|
|
|
@ -39,15 +39,15 @@
@@ -39,15 +39,15 @@
|
|
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
|
|
<Files> |
|
|
|
|
<File name="App.xaml" buildAction="ApplicationDefinition" language="XML"><![CDATA[<Application x:Class="App" |
|
|
|
|
<File name="Application.xaml" buildAction="ApplicationDefinition" language="XML"><![CDATA[<Application x:Class="Application" |
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
|
|
|
StartupUri="Window1.xaml"> |
|
|
|
|
StartupUri="MainWindow.xaml"> |
|
|
|
|
<Application.Resources> |
|
|
|
|
|
|
|
|
|
</Application.Resources> |
|
|
|
|
</Application>]]></File> |
|
|
|
|
<File name="App.xaml.vb" SubType="Code" DependentUpon="App.xaml"><![CDATA[${StandardHeader.VBNET} |
|
|
|
|
<File name="Application.xaml.vb" SubType="Code" DependentUpon="App.xaml"><![CDATA[${StandardHeader.VBNET} |
|
|
|
|
Imports System |
|
|
|
|
Imports System.Windows |
|
|
|
|
Imports System.Data |
|
|
|
@ -55,13 +55,13 @@ Imports System.Xml
@@ -55,13 +55,13 @@ Imports System.Xml
|
|
|
|
|
Imports System.Configuration |
|
|
|
|
|
|
|
|
|
''' <summary> |
|
|
|
|
''' Interaction logic for App.xaml |
|
|
|
|
''' Interaction logic for Application.xaml |
|
|
|
|
''' </summary> |
|
|
|
|
Public Partial Class App |
|
|
|
|
Inherits Application |
|
|
|
|
Public Partial Class Application |
|
|
|
|
Inherits System.Windows.Application |
|
|
|
|
|
|
|
|
|
End Class]]></File> |
|
|
|
|
<File name="Window1.xaml" buildAction="Page" language="XML"><![CDATA[<Window x:Class="Window1" |
|
|
|
|
<File name="MainWindow.xaml" buildAction="Page" language="XML"><![CDATA[<Window x:Class="MainWindow" |
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
|
|
|
Title="${StandardNamespace}" Height="300" Width="300" |
|
|
|
@ -70,7 +70,7 @@ End Class]]></File>
@@ -70,7 +70,7 @@ End Class]]></File>
|
|
|
|
|
|
|
|
|
|
</Grid> |
|
|
|
|
</Window>]]></File> |
|
|
|
|
<File name="Window1.xaml.vb" SubType="Code" DependentUpon="Window1.xaml"><![CDATA[${StandardHeader.VBNET} |
|
|
|
|
<File name="MainWindow.xaml.vb" SubType="Code" DependentUpon="MainWindow.xaml"><![CDATA[${StandardHeader.VBNET} |
|
|
|
|
Imports System |
|
|
|
|
Imports System.Collections.Generic |
|
|
|
|
Imports System.Text |
|
|
|
@ -82,9 +82,9 @@ Imports System.Windows.Input
@@ -82,9 +82,9 @@ Imports System.Windows.Input
|
|
|
|
|
Imports System.Windows.Media |
|
|
|
|
|
|
|
|
|
''' <summary> |
|
|
|
|
''' Interaction logic for Window1.xaml |
|
|
|
|
''' Interaction logic for MainWindow.xaml |
|
|
|
|
''' </summary> |
|
|
|
|
Public Partial Class Window1 |
|
|
|
|
Public Partial Class MainWindow |
|
|
|
|
Inherits Window |
|
|
|
|
|
|
|
|
|
Public Sub New() |
|
|
|
|