中の技術日誌ブログ

C#とC++/CLIと
VBと.NETとWindowsで戯れる
 

目次

Blog 利用状況

ニュース

自己紹介

東京でソフトウェアエンジニアをやっています。
お仕事大募集中です。
記事執筆や、講師依頼とかでも何でもどうぞ(*^_^*)
似顔絵 MSMVPロゴ
MSMVP Visual C# Since 2004/04-2013/03

記事カテゴリ

書庫

日記カテゴリ

00-整理

01-MSMVP

WPFのラジオボタンとEnumの素敵な関係

従来のWindowsFormのラジオボタンでは、現在どの値になっているか、すべてのラジオボタンをチェックする必要がありました。

WPFの場合には素敵なバインディングが備わっているので、もともと各コントロールに名前を付けるなんていう無粋なことはしません。

バインディングをべたな方法で考えると

<RadioButton IsChecked="{Binding Path=RadioA}" />
<RadioButton IsChecked="{Binding Path=RadioB}" />

このようにひとつひとつboolでバインドすることになります。

しかし、これではバインドした値のboolをすべて見て回ることになります。全くいけてません。

ということで、みんなはどうしているか調べてみたところ、

http://blogs.interknowlogy.com/johnbowen/archive/2007/06/21/20468.aspx

というのを発見

<RadioButton IsChecked="{Binding Path=GlobalState, Mode=TwoWay, Converter={StaticResource EnumMatchToBooleanConverter}, ConverterParameter=Off}" Content="Off" Margin="5"/> <RadioButton IsChecked="{Binding Path=GlobalState, Mode=TwoWay, Converter={StaticResource EnumMatchToBooleanConverter}, ConverterParameter=Ready}" Content="Ready" Margin="5"/>

Enumに直接バインドしています。

コンバータパラメータを供給することにより、どの値を意味するかを決定しているわけです。

で、このコンバータのソースはなかったんですが、理屈は簡単なので実装します。

public class EnumBooleanConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {

        string ParameterString = parameter as string;
        if (ParameterString == null)
        {
            return DependencyProperty.UnsetValue;
        }

        if (Enum.IsDefined(value.GetType(), value) == false)
        {
            return DependencyProperty.UnsetValue;
        }

        object paramvalue = Enum.Parse(value.GetType(), ParameterString);

        if (paramvalue == value)
        {
            return true;
        }
        else
        {
            return false;
        }
    }

    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
    {
        string ParameterString = parameter as string;
        if (ParameterString == null)
        {
            return DependencyProperty.UnsetValue;
        }

        return Enum.Parse(targetType, ParameterString);
    }
}


このコンバータは普遍的なコンバータです。

どの局面でも使えます。是非使ってください。

投稿日時 : 2007年9月16日 19:14

コメントを追加

# re: WPFのラジオボタンとEnumの素敵な関係 2007/09/18 13:54 中博俊

if(paramvalue==value)

if((int)paramvalue == (int)value)
に変更してください。バグってます。

# re: WPFのラジオボタンとEnumの素敵な関係 2009/09/01 19:52 mohno

たまたま検索してたどりつきました。
(今は?)ラジオボタンごとに GroupName を変えておかないと、うまく動作しないようですね。
http://wpftutorial.net/RadioButton.html

# re: WPFのラジオボタンとEnumの素敵な関係 2010/10/15 17:31 fu

バインドソースの値を変えても反映されないような。OnPropertyChangeやっても。

# ZFeLoGJjJsgSUUdgsap 2011/12/27 19:22 www.buytelescopes.com/

Every time I come back here again and don`t get disappointed..!

# twzuWHrxHLDPXHPU 2011/12/29 20:41 http://www.healthinter.org/health/page/micardis.ph

Hooray! the one who wrote is a cool guy..!

# bai du HELLo 2012/10/05 18:58 bai du

bai du is a Search engine

# ¥Ð©`¥Ð¥ê©` ¥È©`¥È¥Ð¥Ã¥° 2012/11/01 15:39 http://burberry.suppa.jp/

WONDERFUL Post.thanks for share..more wait ..

# Thanks for the auspicious writeup. It actually used to be a entertainment account it. Glance advanced to far delivered agreeable from you! However, how could we keep up a correspondence? 2017/08/27 18:26 Thanks for the auspicious writeup. It actually use

Thanks for the auspicious writeup. It actually used to be a
entertainment account it. Glance advanced to far delivered agreeable from you!
However, how could we keep up a correspondence?

# Great post. I'm going through a few of these issues as well.. 2019/05/10 23:26 Great post. I'm going through a few of these issue

Great post. I'm going through a few of these issues as well..

# Appreciate the recommendation. Let me try it out. 2019/07/25 15:19 Appreciate the recommendation. Let me try it out.

Appreciate the recommendation. Let me try it out.

# Appreciate the recommendation. Let me try it out. 2019/07/25 15:20 Appreciate the recommendation. Let me try it out.

Appreciate the recommendation. Let me try it out.

# Appreciate the recommendation. Let me try it out. 2019/07/25 15:21 Appreciate the recommendation. Let me try it out.

Appreciate the recommendation. Let me try it out.

# Appreciate the recommendation. Let me try it out. 2019/07/25 15:22 Appreciate the recommendation. Let me try it out.

Appreciate the recommendation. Let me try it out.

# I believe that is among the most important info for me. And i'm satisfied reading your article. But wanna commentary on some normal things, The web site taste is wonderful, the articles is truly excellent : D. Excellent activity, cheers 2021/08/24 17:55 I believe that is among the most important info fo

I believe that is among the most important info for me.

And i'm satisfied reading your article. But wanna commentary on some normal
things, The web site taste is wonderful, the articles is truly excellent :
D. Excellent activity, cheers

# Remarkable! Its in fact awesome article, I have got much clear idea concerning from this article. 2021/08/28 22:08 Remarkable! Its in fact awesome article, I have go

Remarkable! Its in fact awesome article, I have got much clear idea concerning from this article.

# Remarkable! Its in fact awesome article, I have got much clear idea concerning from this article. 2021/08/28 22:09 Remarkable! Its in fact awesome article, I have go

Remarkable! Its in fact awesome article, I have got much clear idea concerning from this article.

# Remarkable! Its in fact awesome article, I have got much clear idea concerning from this article. 2021/08/28 22:10 Remarkable! Its in fact awesome article, I have go

Remarkable! Its in fact awesome article, I have got much clear idea concerning from this article.

# Remarkable! Its in fact awesome article, I have got much clear idea concerning from this article. 2021/08/28 22:11 Remarkable! Its in fact awesome article, I have go

Remarkable! Its in fact awesome article, I have got much clear idea concerning from this article.

# I am actually grateful to the owner of this site who has shared this fantastic article at at this place. 2021/09/05 18:22 I am actually grateful to the owner of this site w

I am actually grateful to the owner of this site who has shared this
fantastic article at at this place.

# I am actually grateful to the owner of this site who has shared this fantastic article at at this place. 2021/09/05 18:23 I am actually grateful to the owner of this site w

I am actually grateful to the owner of this site who has shared this
fantastic article at at this place.

# This text is invaluable. Where can I find out more? ps4 games https://bit.ly/3nkdKIi ps4 2021/09/12 20:00 This text is invaluable. Where can I find out more

This text is invaluable. Where can I find out more?
ps4 games https://bit.ly/3nkdKIi ps4

# This text is invaluable. Where can I find out more? ps4 games https://bit.ly/3nkdKIi ps4 2021/09/12 20:01 This text is invaluable. Where can I find out more

This text is invaluable. Where can I find out more?
ps4 games https://bit.ly/3nkdKIi ps4

# This text is invaluable. Where can I find out more? ps4 games https://bit.ly/3nkdKIi ps4 2021/09/12 20:02 This text is invaluable. Where can I find out more

This text is invaluable. Where can I find out more?
ps4 games https://bit.ly/3nkdKIi ps4

# This text is invaluable. Where can I find out more? ps4 games https://bit.ly/3nkdKIi ps4 2021/09/12 20:03 This text is invaluable. Where can I find out more

This text is invaluable. Where can I find out more?
ps4 games https://bit.ly/3nkdKIi ps4

# Fabulous, what a webpage it is! This blog presents useful data to us, keep it up. quest bars https://www.iherb.com/search?kw=quest%20bars quest bars 2021/09/13 7:10 Fabulous, what a webpage it is! This blog present

Fabulous, what a webpage it is! This blog presents useful data to us, keep it up.

quest bars https://www.iherb.com/search?kw=quest%20bars quest bars

# There's certainly a great deal to find out about this subject. I love all the points you have made. 2021/10/06 23:37 There's certainly a great deal to find out about t

There's certainly a great deal to find out about this subject.

I love all the points you have made.

# Hello, after reading this awesome paragraph i am as well delighted to share my experience here with mates. https://parttimejobshiredin30minutes.wildapricot.org/ part time jobs hired in 30 minutes 2021/10/23 0:28 Hello, after reading this awesome paragraph i am a

Hello, after reading this awesome paragraph i am as well delighted to share my experience here with mates.
https://parttimejobshiredin30minutes.wildapricot.org/ part time jobs hired in 30 minutes

# Hello, after reading this awesome paragraph i am as well delighted to share my experience here with mates. https://parttimejobshiredin30minutes.wildapricot.org/ part time jobs hired in 30 minutes 2021/10/23 0:29 Hello, after reading this awesome paragraph i am a

Hello, after reading this awesome paragraph i am as well delighted to share my experience here with mates.
https://parttimejobshiredin30minutes.wildapricot.org/ part time jobs hired in 30 minutes

# I was recommended this web site by my cousin. I'm not sure whether this post is written by him as nobody else know such detailed about my trouble. You're incredible! Thanks! 2022/11/29 11:30 I was recommended this web site by my cousin. I'm

I was recommended this web site by my cousin. I'm not sure whether this post is written by him as nobody else know such detailed about my trouble.

You're incredible! Thanks!

# I was recommended this web site by my cousin. I'm not sure whether this post is written by him as nobody else know such detailed about my trouble. You're incredible! Thanks! 2022/11/29 11:31 I was recommended this web site by my cousin. I'm

I was recommended this web site by my cousin. I'm not sure whether this post is written by him as nobody else know such detailed about my trouble.

You're incredible! Thanks!

# I was recommended this web site by my cousin. I'm not sure whether this post is written by him as nobody else know such detailed about my trouble. You're incredible! Thanks! 2022/11/29 11:32 I was recommended this web site by my cousin. I'm

I was recommended this web site by my cousin. I'm not sure whether this post is written by him as nobody else know such detailed about my trouble.

You're incredible! Thanks!

# I was recommended this web site by my cousin. I'm not sure whether this post is written by him as nobody else know such detailed about my trouble. You're incredible! Thanks! 2022/11/29 11:32 I was recommended this web site by my cousin. I'm

I was recommended this web site by my cousin. I'm not sure whether this post is written by him as nobody else know such detailed about my trouble.

You're incredible! Thanks!

# Hi would you mind stating which blog platform you're working with? I'm looking to start my own blog soon but I'm having a difficult time selecting between BlogEngine/Wordpress/B2evolution and Drupal. The reason I ask is because your design seems different 2024/04/07 18:21 Hi would you mind stating which blog platform you'

Hi would you mind stating which blog platform you're working with?
I'm looking to start my own blog soon but I'm having
a difficult time selecting between BlogEngine/Wordpress/B2evolution and Drupal.
The reason I ask is because your design seems different then most
blogs and I'm looking for something completely
unique. P.S My apologies for getting off-topic but I had to ask!

# Wonderful, what a website it is! This webpage gives valuable data to us, keep it up. 2024/04/11 10:16 Wonderful, what a website it is! This webpage give

Wonderful, what a website it is! This webpage gives valuable
data to us, keep it up.

# buy misoprostol over the counter https://cytotec.club/ buy cytotec online 2024/04/28 2:08 Cytotec

buy misoprostol over the counter https://cytotec.club/ buy cytotec online

# Hi, i think that i saw you visited my weblog so i came to “return the favor”.I'm trying to find things to enhance my site!I suppose its ok to use a few of your ideas!! 2024/05/02 9:06 Hi, i think that i saw you visited my weblog so i

Hi, i think that i saw you visited my weblog
so i came to “return the favor”.I'm trying to find things to
enhance my site!I suppose its ok to use
a few of your ideas!!

# Hello my friend! I want to say that this post is awesome, great written and include approximately all significant infos. I would like to see extra posts like this . 2024/05/03 5:25 Hello my friend! I want to say that this post is a

Hello my friend! I want to say that this post is awesome,
great written and include approximately all significant infos.
I would like to see extra posts like this .

# Hi there! This post could not be written any better! Reading through this post reminds me of my good old room mate! He always kept chatting about this. I will forward this post to him. Pretty sure he will have a good read. Many thanks for sharing! 2024/05/13 6:26 Hi there! This post could not be written any bette

Hi there! This post could not be written any better!
Reading through this post reminds me of my good old room mate!
He always kept chatting about this. I will forward this post to him.
Pretty sure he will have a good read. Many thanks for sharing!

# Heya i'm for the primary time here. I came across this board and I find It truly helpful & it helped me out a lot. I'm hoping to provide one thing again and aid others such as you helped me. 2024/05/28 7:31 Heya i'm for the primary time here. I came across

Heya i'm for the primary time here. I came across this board and I find It truly helpful
& it helped me out a lot. I'm hoping to provide one thing again and aid others
such as you helped me.

# If you are going for most excellent contents like I do, simply go too seee this web page every day since it gives quality contents, thanks 2025/03/30 1:06 If you are going for most excellent contents like

If you are gping forr most excellent contents like I
do, simply go to see tuis web page every day since it ives quality contents, thanks

タイトル
名前
URL
コメント