Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

2010-11-11から1日間の記事一覧

マークアップだけでHelloWorld

マークアップだけでHelloWorldをやってみました。 App.xaml <Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> <Application.MainWindow> <Window Visibility="Visible"> <TextBlock>Hello World</TextBlock> </Window> </Application.MainWindow> </Application> ※Visibility属性を明示的に"Visible"に指定しないと、アプリを起動…