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
/
ReusableCustomApplicationSample
/
csharp
/
customapplicationlibrary
/
customapplication.cs
blob
c34b49ac405ccacbc4b00e59ea72b630af9536d6
1
using
System
;
2
using
System
.
Windows
;
3
4
namespace
CustomApplicationLibrary
5
{
6
public class
CustomApplication
:
Application
7
{
8
protected override void
OnStartup
(
StartupEventArgs e
)
9
{
10
base
.
OnStartup
(
e
);
11
MessageBox
.
Show
(
"Hello, reusable custom application!"
);
12
}
13
}
14
}