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
/
TrafficAlert
/
csharp
/
app.xaml.cs
blob
651909f4dee5c1f9323841cc20287d2ad1d4a141
1
using
System
;
2
using
System
.
Windows
;
3
using
System
.
Data
;
4
using
System
.
Xml
;
5
using
System
.
Configuration
;
6
7
namespace
TrafficAlert
8
{
9
/// <summary>
10
/// Interaction logic for app.xaml
11
/// </summary>
12
13
public partial class
app
:
Application
14
{
15
16
void
AppStartup
(
object
sender
,
StartupEventArgs args
)
17
{
18
Window1 mainWindow
=
new
Window1
();
19
mainWindow
.
Show
();
20
}
21
22
}
23
}