かずきのBlog

C#やJavaやRubyとメモ書き

目次

Blog 利用状況

ニュース

わんくまBlogが不安定になったため、前に書いてたはてなダイアリーにメインを移動します。
かずきのBlog@Hatena
技術的なネタは、こちらにも、はてなへのリンクという形で掲載しますが、雑多ネタははてなダイアリーだけに掲載することが多いと思います。
コメント
プログラマ的自己紹介
お気に入りのツール/IDE
プロフィール
経歴
広告
アクセサリ

書庫

日記カテゴリ

WPF入門してみた

Visual Studio 2008 beta2のデザイナがしょぼいということで、いきなりやる気が削がれたWPFを触りだしてみようと思う。
デザイナがしょぼいので、とりあえずxaml形式のファイルは少しの間お預け。
C#だけで、簡単なのを組んでみようと思う。

WPFアプリケーションを「HelloWPF」という名前で新規作成する。
xamlファイルが2つ程作られてるけど、それはさくっと消してまっさらな状態にする。

クラスの新規作成から、「HelloWPFApplication」というクラスを作って下のような内容にする。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;

namespace HelloWPF
{
    class HelloWPFApplication : Application
    {
        [STAThread]
        static void Main(string[] args)
        {
            new HelloWPFApplication().Run();
        }

        public HelloWPFApplication()
        {
            this.Startup += new StartupEventHandler(HelloWPFApplication_Startup);
        }

        void HelloWPFApplication_Startup(object sender, StartupEventArgs e)
        {
            Window myWindow = new Window();
            myWindow.Title = "こんにちはWPF";
            myWindow.Height = 225;
            myWindow.Width = 250;
            myWindow.Show();
        }
    }
}

WPFのアプリケーションは、System.Windows.Applicationを継承して作る。
ApplicationのRunを呼ぶと色々裏でやってくれる手はずになってる。
Applicationクラスには、Startupというイベントがあって、Runを呼ぶと起きるイベントになってるみたい。
そこで、メインウィンドウを表示する。

ウィンドウは、System.Windows.Windowクラスを使う。
プロパティを色々設定したあとShowメソッドで表示をする。
実行結果は↓みたいになる。

見ての通り、何も面白くないけどちゃんと動いた!!
千里の道も一歩から。

ちょっと欲張って二歩目にいくよ。ボタン置いてクリックしたらウィンドウのタイトルを「こんばんはWPF」にしてみようと思う。
ボタンとかを置くには、Windows#AddChildメソッドで追加すればいいらしいがprotectedメソッドなので外からは呼べないチック。
なので、新規にMyWindowという名前のクラスを作って下のような内容にしてみた。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;

namespace HelloWPF
{
    class MyWindow : Window
    {
        private Button button;

        public MyWindow()
        {
            InitializeComponents();
        }

        private void InitializeComponents()
        {
            this.Title = "こんにちはWPF";
            this.Height = 225;
            this.Width = 250;

            button = new Button();
            button.Content = "クリック!";
            button.Click += new RoutedEventHandler(button_Click);
            this.AddChild(button);
        }

        void button_Click(object sender, RoutedEventArgs e)
        {
            this.Title = "今は夜ですよ?";
        }

    }
}

System.Windows.Windowを継承して、ボタンを置いている。
ボタンは、System.Windows.Controls.Buttonっていうクラスを使う。ボタンのクリックイベントでWindowのタイトルを「今は夜ですよ?」に変えてる。

んで、「HelloWPFApplication」クラスのStartupイベントを↓のように書き換えた。

void HelloWPFApplication_Startup(object sender, StartupEventArgs e)
{
    Window myWindow = new MyWindow();
    myWindow.Show();
}

F5を押して実行すると下のようになる。ちゃんと自己主張の強すぎるボタンがあって、押すとタイトルが変わる。


クリックすると… 

とりあえずハローワールド的なところが終了。
先は長い。

 

投稿日時 : 2007年10月10日 17:27

Feedback

# [WPF]WPF関連のエントリを整理してみた 2008/12/16 23:07 かずきのBlog

[WPF]WPF関連のエントリを整理してみた

# dKJOoKtlTXQx 2011/09/29 20:25 http://oemfinder.com

80N8Jf Thanks for the article! I hope the author does not mind if I use it for my course work!...

# cDmDANYkpTVojAh 2011/11/02 5:24 http://www.pharmaciecambier.com/

Very amusing thoughts, well told, everything is in its place:D

# lnfUXpRzkMVUjyPg 2011/11/02 6:19 http://optclinic.com/

Thanks for the news! Just was thinking about it! By the way Happy New Year to all of you:D

# LuVDelXMJihQRkgZi 2011/11/02 9:38 http://papillomasfree.com/

Well, actually, a lot of what you write is not quite true !... well, okay, it does not matter:D

# jgQizBWlwtMWMrlLf 2011/11/08 16:26 http://www.disfuncion-erectil.org

Thanks:) Cool topic, write more often! You manage with it perfctly:D

# MnWivGfgtOvlgZh 2011/11/09 6:38 http://www.farmaciaunica.com/

Very amusing thoughts, well told, everything is in its place:D

# PgVyatAfIX 2011/11/15 4:00 http://www.pharmaciedelange.com/

Sometimes I also see something like this, but earlier I didn`t pay much attention to this!...

# wVoKiRGONThm 2011/11/16 3:55 http://www.laurenslinens.com/

52. "The road will be overcome by that person, who goes." I wish you never stopped and be creative - forever..!

# ugg sale 2012/10/19 16:13 http://www.superbootonline.com

I like this web blog so much, saved to fav. "Respect for the fragility and importance of an individual life is still the mark of an educated man." by Norman Cousins.

# burberry wallets 2012/10/26 4:01 http://www.burberryoutletscarfsale.com/accessories

Thanks for helping out, excellent info .
burberry wallets http://www.burberryoutletscarfsale.com/accessories/burberry-wallets-2012.html

# burberry wallets 2012/10/28 13:16 http://www.burberryoutletonlineshopping.com/burber

I haven't checked in here for a while since I thought it was getting boring, but the last several posts are good quality so I guess I will add you back to my everyday bloglist. You deserve it friend :)
burberry wallets http://www.burberryoutletonlineshopping.com/burberry-wallets-2012.html

# burberry bag 2012/10/28 13:16 http://www.burberryoutletonlineshopping.com/burber

I think this site contains some really good info for everyone :D. "Anybody who watches three games of football in a row should be declared brain dead." by Erma Bombeck.
burberry bag http://www.burberryoutletonlineshopping.com/burberry-tote-bags.html

# burberry womens shirts 2012/10/28 13:16 http://www.burberryoutletonlineshopping.com/burber

As soon as I observed this website I went on reddit to share some of the love with them.
burberry womens shirts http://www.burberryoutletonlineshopping.com/burberry-womens-shirts.html

# mens shirts 2012/10/28 13:16 http://www.burberryoutletonlineshopping.com/burber

Some genuinely good info , Gladiola I detected this. "Civilization is a transient sickness." by Robinson Jeffers.
mens shirts http://www.burberryoutletonlineshopping.com/burberry-men-shirts.html

# Canada Goose Jackets 2012/10/30 20:41 http://www.supercoatsale.com

As soon as I noticed this website I went on reddit to share some of the love with them.
Canada Goose Jackets http://www.supercoatsale.com

# Women's Duvetica Coats 2012/10/30 20:41 http://www.supercoatsale.com/canada-goose-duvetica

You are my inhalation , I possess few blogs and occasionally run out from to brand.
Women's Duvetica Coats http://www.supercoatsale.com/canada-goose-duvetica-womens-duvetica-coats-c-13_16.html

# Men's Canada Goose Como Parka 2012/10/30 20:42 http://www.supercoatsale.com/mens-canada-goose-com

I went over this internet site and I think you have a lot of good info, saved to my bookmarks (:.
Men's Canada Goose Como Parka http://www.supercoatsale.com/mens-canada-goose-como-parka-c-1_8.html

# Men's Duvetica Jackets 2012/10/30 20:42 http://www.supercoatsale.com/canada-goose-duvetica

What i don't understood is in reality how you're now not really much more smartly-preferred than you may be now. You are so intelligent. You already know thus considerably when it comes to this matter, made me for my part believe it from so many numerous angles. Its like women and men are not fascinated unless it's something to accomplish with Lady gaga! Your individual stuffs great. Always maintain it up!
Men's Duvetica Jackets http://www.supercoatsale.com/canada-goose-duvetica-mens-duvetica-jackets-c-13_14.html

# Adidas Climacool Ride 2012/10/30 20:44 http://www.adidasoutle.com/adidas-shoes-adidas-cli

I truly enjoy looking through on this website , it contains wonderful posts . "Wealth and children are the adornment of life." by Koran.
Adidas Climacool Ride http://www.adidasoutle.com/adidas-shoes-adidas-climacool-ride-c-1_3.html

# clarisonic mia 2012/10/30 21:41 http://www.clarisonicmia-coupon.com/

Have a passion for stands out as the exclusive happy and furthermore adequate answer to the problem related with a persons daily life.
clarisonic mia http://www.clarisonicmia-coupon.com/

# Nike Free Run 2012/10/30 21:41 http://www.nikefree3runschuhe.com/

During prosperity's sake the best contacts are familiar with us; with regard to trouble damage the best contacts.
Nike Free Run http://www.nikefree3runschuhe.com/

# Burberry Tie 2012/10/31 20:50 http://www.burberrysalehandbags.com/burberry-ties.

Merely a smiling visitant here to share the love (:, btw great style. "Make the most of your regrets... . To regret deeply is to live afresh." by Henry David Thoreau.
Burberry Tie http://www.burberrysalehandbags.com/burberry-ties.html

# cheap burberry bags 2012/10/31 20:51 http://www.burberrysalehandbags.com/burberry-tote-

You are my aspiration, I possess few blogs and rarely run out from brand :). "'Tis the most tender part of love, each other to forgive." by John Sheffield.
cheap burberry bags http://www.burberrysalehandbags.com/burberry-tote-bags.html

# burberry scarf 2012/10/31 20:51 http://www.burberrysalehandbags.com/burberry-scarf

You have brought up a very fantastic points , thanks for the post.
burberry scarf http://www.burberrysalehandbags.com/burberry-scarf.html

# wallet 2012/10/31 20:51 http://www.burberrysalehandbags.com/burberry-walle

What i do not understood is if truth be told how you are no longer really a lot more well-appreciated than you might be now. You are so intelligent. You recognize therefore significantly relating to this topic, produced me individually consider it from numerous numerous angles. Its like men and women are not fascinated except it's something to accomplish with Lady gaga! Your personal stuffs excellent. At all times take care of it up!
wallet http://www.burberrysalehandbags.com/burberry-wallets-2012.html

# burberry mens shirts 2012/10/31 20:51 http://www.burberrysalehandbags.com/burberry-men-s

Merely wanna input on few general things, The website layout is perfect, the content material is very superb. "Drop the question what tomorrow may bring, and count as profit every day that fate allows you." by Horace.
burberry mens shirts http://www.burberrysalehandbags.com/burberry-men-shirts.html

# burberry watches for women 2012/10/31 20:51 http://www.burberrysalehandbags.com/burberry-watch

Its fantastic as your other posts : D, regards for posting . "A gift in season is a double favor to the needy." by Publilius Syrus.
burberry watches for women http://www.burberrysalehandbags.com/burberry-watches.html

# First of all I would like to say great blog! I had a quick question in which I'd like to ask if you do not mind. I was interested to know how you center yourself and clear your mind prior to writing. I've had trouble clearing my thoughts in getting my th 2018/09/10 18:34 First of all I would like to say great blog! I had

First of all I would like to say great blog! I had a quick question in which I'd like to ask if
you do not mind. I was interested to know how you center yourself
and clear your mind prior to writing. I've had trouble clearing my thoughts in getting
my thoughts out. I truly do enjoy writing however it just
seems like the first 10 to 15 minutes are wasted just trying to
figure out how to begin. Any recommendations
or tips? Cheers!

# When some one searches for his necessary thing, so he/she wants to be available that in detail, so that thing is maintained over here. 2018/10/02 12:41 When some one searches for his necessary thing, so

When some one searches for his necessary thing, so he/she wants to be available that in detail, so that thing
is maintained over here.

# seTWXKOfrNFFMqsxtMe 2018/12/17 8:58 https://www.suba.me/

7GOxpV readers interested about what you've got to say.

# nglbgieztCeFPvmgd 2018/12/20 0:20 https://www.suba.me/

i500T3 Really informative blog post. Much obliged.

# WHXwGAIpeSG 2021/07/03 3:43 https://www.blogger.com/profile/060647091882378654

Superb points totally, you may attained a brand brand new audience. Precisely what may perhaps anyone suggest regarding your posting you made a couple of days before? Virtually any particular?

# pJfsQRrIauarcMruh 2022/04/19 14:34 johnansaz

http://imrdsoacha.gov.co/silvitra-120mg-qrms

タイトル
名前
Url
コメント