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
/
LayoutInformation
/
csharp
/
app.xaml.cs
blob
0617a7e788ceafc76704d0291249d215e019b2e5
1
using
System
;
2
using
System
.
Windows
;
3
4
namespace
layout_information
5
{
6
/// <summary>
7
/// Interaction logic for app.xaml
8
/// </summary>
9
10
public partial class
app
:
Application
11
{
12
void
AppStartingUp
(
object
sender
,
StartupEventArgs e
)
13
{
14
Window1 mainWindow
=
new
Window1
();
15
mainWindow
.
InitializeComponent
();
16
mainWindow
.
Show
();
17
}
18
19
}
20
}