repo.or.cz
/
windows-sources.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
added samples
[windows-sources.git]
/
sdk
/
samples
/
WPFSamples
/
MatrixSample
/
csharp
/
app.xaml.cs
blob
0ee7002ea5664029f1b26ed6ae268ed1fe58b4f4
1
using
System
;
2
using
System
.
Windows
;
3
using
System
.
Data
;
4
using
System
.
Xml
;
5
using
System
.
Configuration
;
6
7
namespace
MatrixSample
8
{
9
/// <summary>
10
/// Interaction logic for app.xaml
11
/// </summary>
12
13
public partial class
app
:
Application
14
{
15
void
AppStartingUp
(
object
sender
,
StartupEventArgs e
)
16
{
17
Window1 mainWindow
=
new
Window1
();
18
mainWindow
.
Show
();
19
mainWindow
.
ShowVars
();
20
21
22
23
}
24
25
}
26
}