えムナウ Blog

えムナウ の なすがまま

目次

Blog 利用状況

ニュース


follow mnow at http://twitter.com


えムナウのプログラミングのページ

INETAJ

書庫

日記カテゴリ

ギャラリ

WPF Carendar DatePicker 土日祝日 の 色替え

WPF Carendar 土日祝日の色替え
http://blogs.msdn.com/kathykam/archive/2009/05/18/how-to-customize-holiday-appearance-in-the-silverlight-calendar-jason-cooke.aspx

DatePicker はCalendarStyleしかもっていないので厄介です。
DatePicker でできなきゃというわけでやってみました。
Holidays は実際のアプリでは Window1.cs から注入するんでしょうが今回はコンストラクタで今年分だけ。

<Window x:Class="DatePickerDemo.Window1"

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    Title="Window1" Height="300" Width="300"

    xmlns:toolkit="http://schemas.microsoft.com/wpf/2008/toolkit"

    xmlns:local="clr-namespace:DatePickerDemo"

    >

  <Window.Resources>

    <local:DatePickerBackgroundConverter x:Key="DatePickerBackgroundConverter" />

    <Style TargetType="toolkit:Calendar" x:Key="CalendarStyle1">

      <Setter Property="Template">

        <Setter.Value>

          <ControlTemplate TargetType="toolkit:Calendar">

            <StackPanel HorizontalAlignment="Center" x:Name="Root">

              <toolkit:Calendar x:Name="Calendar" SelectedDate="{TemplateBinding SelectedDate}" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}">

                <toolkit:Calendar.CalendarDayButtonStyle>

                  <Style TargetType="toolkit:CalendarDayButton">

                    <Setter Property="Template">

                      <Setter.Value>

                        <ControlTemplate TargetType="toolkit:CalendarDayButton">

                          <Grid Background=

            "{Binding Converter={StaticResource DatePickerBackgroundConverter}, Path=Date}">

                            <ContentControl x:Name="Content" Margin="5,1,5,1"

            Content="{TemplateBinding Content}" />

                          </Grid>

                        </ControlTemplate>

                      </Setter.Value>

                    </Setter>

                  </Style>

                </toolkit:Calendar.CalendarDayButtonStyle>

              </toolkit:Calendar>

            </StackPanel>

          </ControlTemplate>

        </Setter.Value>

      </Setter>

    </Style>

  </Window.Resources>

    <Grid>

    <toolkit:DatePicker Height="25" Name="datePicker1" VerticalAlignment="Top" CalendarStyle="{StaticResource CalendarStyle1}"/>

  </Grid>

</Window>

 

using System;

using System.Collections.Generic;

using System.Windows.Media;

 

namespace DatePickerDemo

{

    class DatePickerBackgroundConverter : System.Windows.Data.IValueConverter

    {

        public static IList<DateTime> Holidays { get; set; }

        public DatePickerBackgroundConverter()

        {

            Holidays = new DateTime[] {

                new DateTime(2009, 1,1),

                new DateTime(2009, 1,12),

                new DateTime(2009, 2,11),

                new DateTime(2009, 3,20),

                new DateTime(2009, 4,29),

                new DateTime(2009, 5,3),

                new DateTime(2009, 5,4),

                new DateTime(2009, 5,5),

                new DateTime(2009, 5,6),

                new DateTime(2009, 7,20),

                new DateTime(2009, 9,21),

                new DateTime(2009, 9,22),

                new DateTime(2009, 9,23),

                new DateTime(2009, 10,12),

                new DateTime(2009, 11,3),

                new DateTime(2009, 11,23),

                new DateTime(2009, 12,23)

            };

 

        }

        public object Convert(object value,

                            Type targetType,

                            object parameter,

                            System.Globalization.CultureInfo culture)

        {

            DateTime date = (DateTime)value;

            if (date.DayOfWeek == DayOfWeek.Sunday ||

                        (Holidays != null && Holidays.Contains(date)))

            {

                return new SolidColorBrush(Colors.LightPink);

            }

            else if (date.DayOfWeek == DayOfWeek.Saturday)

            {

                return new SolidColorBrush(Colors.LightBlue);

            }

            return new SolidColorBrush(Colors.White);

        }

 

        public object ConvertBack(object value, Type targetType,

        object parameter, System.Globalization.CultureInfo culture)

        {

            return null;

        }

    }

}

 

投稿日時 : 2009年7月8日 20:33

コメントを追加

# re: WPF Carendar DatePicker 土日祝日 の 色替え 2009/07/08 22:50 えムナウ

XAML側に問題あるみたいですね。
機能は達成できたけど他の機能の邪魔をしている。

#  WPF Carendar DatePicker ???????????? ??? ????????? 2010/02/10 21:10 Pingback/TrackBack

WPF Carendar DatePicker ???????????? ??? ?????????

#  WPF Carendar DatePicker ???????????? ??? ????????? 2010/03/22 8:54 Pingback/TrackBack

WPF Carendar DatePicker ???????????? ??? ?????????

# re: WPF Carendar DatePicker 土日祝日 の 色替え 2011/08/09 16:41 monger_monger

こんにちは。以下のリンクはSilverlightの例ですが、とりあえず動いています。参考になれば幸いです。

http://social.msdn.microsoft.com/Forums/ja-JP/silvelightdotnetja/thread/c3626e6b-8d22-4ca0-8472-40cea33731f6

# Great information. Lucky me I found your website by chance (stumbleupon). I've saved as a favorite for later! 2019/04/05 1:48 Great information. Lucky me I found your website b

Great information. Lucky me I found your website by chance
(stumbleupon). I've saved as a favorite for later!

# Everyone loves what you guys are usually up too. Such clever work and exposure! Keep up the amazing works guys I've included you guys to our blogroll. 2019/04/09 17:14 Everyone loves what you guys are usually up too.

Everyone loves what you guys are usually up too. Such clever work
and exposure! Keep up the amazing works guys I've included you guys to our blogroll.

# I've been browsing online greater than 3 hours as of late, yet I never found any fascinating article like yours. It is lovely worth enough for me. Personally, if all web owners and bloggers made good content material as you did, the net will be a lot m 2019/05/11 12:16 I've been browsing online greater than 3 hours as

I've been browsing online greater than 3 hours as of late, yet I never
found any fascinating article like yours. It is lovely worth enough for me.
Personally, if all web owners and bloggers made good content material as you did,
the net will be a lot more helpful than ever before.

# Your style is unique in comparison to other folks I have read stuff from. I appreciate you for posting when you have the opportunity, Guess I will just book mark this page. 2019/05/14 0:50 Your style is unique in comparison to other folks

Your style is unique in comparison to other folks I have read stuff from.
I appreciate you for posting when you have the opportunity, Guess I will just book mark this page.

# Wow! At last I got a webpage from where I be able to truly take valuable data concerning my study and knowledge. 2019/06/04 14:46 Wow! At last I got a webpage from where I be able

Wow! At last I got a webpage from where I be able to truly
take valuable data concerning my study and knowledge.

# I constantly spent my half an hour to read this website's articles all the time along with a mug of coffee. 2019/06/05 4:19 I constantly spent my half an hour to read this w

I constantly spent my half an hour to read this website's articles all the time along
with a mug of coffee.

# You actually make it seem so easy together with your presentation however I to find this topic to be actually something that I think I would never understand. It kind of feels too complicated and extremely huge for me. I'm looking ahead for your subseq 2019/07/25 15:34 You actually make it seem so easy together with yo

You actually make it seem so easy together with your presentation however
I to find this topic to be actually something that I think I would
never understand. It kind of feels too complicated and extremely huge for me.
I'm looking ahead for your subsequent submit, I will attempt to get the hang
of it!

# You actually make it seem so easy together with your presentation however I to find this topic to be actually something that I think I would never understand. It kind of feels too complicated and extremely huge for me. I'm looking ahead for your subseq 2019/07/25 15:35 You actually make it seem so easy together with yo

You actually make it seem so easy together with your presentation however
I to find this topic to be actually something that I think I would
never understand. It kind of feels too complicated and extremely huge for me.
I'm looking ahead for your subsequent submit, I will attempt to get the hang
of it!

# You actually make it seem so easy together with your presentation however I to find this topic to be actually something that I think I would never understand. It kind of feels too complicated and extremely huge for me. I'm looking ahead for your subseq 2019/07/25 15:36 You actually make it seem so easy together with yo

You actually make it seem so easy together with your presentation however
I to find this topic to be actually something that I think I would
never understand. It kind of feels too complicated and extremely huge for me.
I'm looking ahead for your subsequent submit, I will attempt to get the hang
of it!

# You actually make it seem so easy together with your presentation however I to find this topic to be actually something that I think I would never understand. It kind of feels too complicated and extremely huge for me. I'm looking ahead for your subseq 2019/07/25 15:37 You actually make it seem so easy together with yo

You actually make it seem so easy together with your presentation however
I to find this topic to be actually something that I think I would
never understand. It kind of feels too complicated and extremely huge for me.
I'm looking ahead for your subsequent submit, I will attempt to get the hang
of it!

# yfAyhvZammOX 2021/07/03 3:56 https://www.blogger.com/profile/060647091882378654

Thanks so much for the blog. Keep writing.

# Illikebuisse doqvw 2021/07/03 12:56 pharmacepticacom

tadalafil peptides https://pharmaceptica.com/

# Illikebuisse mlshd 2021/07/04 8:23 pharmaceptica.com

buy sildenafil without prescription https://pharmaceptica.com/

# re: WPF Carendar DatePicker ???? ? ??? 2021/07/10 14:34 hydroxychoriquine

is chloroquine safe https://chloroquineorigin.com/# hydroxychloraquine

# re: WPF Carendar DatePicker ???? ? ??? 2021/07/16 17:22 how do i get hydroxychloroquine

hloroquine https://chloroquineorigin.com/# ic hydroxychloroquine

# re: WPF Carendar DatePicker ???? ? ??? 2021/07/26 6:08 hydroxycloraquine

chloroquine natural sources https://chloroquineorigin.com/# quinine vs hydroxychloroquine

# re: WPF Carendar DatePicker ???? ? ??? 2021/08/07 6:53 hydrchloroquine

cloraquine https://chloroquineorigin.com/# plaquenil 400 mg

# clomid online cheap https://clomiden.fun/ 2022/04/12 13:15 Clomids

clomid online cheap https://clomiden.fun/

# prednisone 10 mg coupon https://prednisoneus.shop/ 2022/04/16 23:09 Prednisone

prednisone 10 mg coupon https://prednisoneus.shop/

# finasteride medication https://finasteridemen.com/
2022/05/11 15:19 Finasteride

finasteride medication https://finasteridemen.com/

# eloigtkjpano 2022/06/03 10:58 nevgdrga

erythromycin base http://erythromycinn.com/#

# lasix tablet https://buylasix.icu/
furosemide 40 mg 2022/06/24 17:26 LasixRx

lasix tablet https://buylasix.icu/
furosemide 40 mg

# Aurogra https://allpharm.store/ 2022/07/21 22:22 AllPharm

Aurogra https://allpharm.store/

# heartgard ivermectin https://stromectolbestprice.com/ 2022/07/30 0:49 BestPrice

heartgard ivermectin https://stromectolbestprice.com/

# how much is prednisone 5mg https://deltasone.icu/
prednisone 50 2022/08/22 9:59 Prednisone

how much is prednisone 5mg https://deltasone.icu/
prednisone 50

# cheap erectile dysfunction pills https://ed-pills.xyz/
best otc ed pills 2022/09/16 7:50 EdPills

cheap erectile dysfunction pills https://ed-pills.xyz/
best otc ed pills

# best ed pill https://ed-pills.xyz/
erection pills 2022/09/17 20:10 EdPills

best ed pill https://ed-pills.xyz/
erection pills

# ロレックス 年式 シリアル 2023/03/10 23:37 boywfqrajmt@ezwen.ne.jp

弊社はブランド商品満載し、ブランド通販店で一番信用のある店なので!。品質はこちら
が間違いなく保証します。
私のお店で購入していきたいので末長くお付き合いさせて下さい。
最高品質の商品を低価格でお客様に提供しております。
この品質に驚かれるお客様が続出しております。
是非一度当店をご利用ください。
ロレックス 年式 シリアル https://www.b2kopi.com/product/detail.aspx-id=2602.htm

# accutane prescription price isotretinoinacne.shop 2023/08/08 13:19 accutane prescription price

accutane prescription price https://isotretinoinacne.shop/# accutane 40 mg price in india

# gГјnstige online apotheke 2023/09/26 14:11 Williamreomo

http://onlineapotheke.tech/# versandapotheke versandkostenfrei
п»?online apotheke

# online apotheke gГјnstig 2023/09/26 23:57 Williamreomo

http://onlineapotheke.tech/# versandapotheke versandkostenfrei
online apotheke preisvergleich

# online apotheke deutschland 2023/09/27 1:18 Williamreomo

http://onlineapotheke.tech/# versandapotheke deutschland
internet apotheke

# п»їonline apotheke 2023/09/27 4:13 Williamreomo

https://onlineapotheke.tech/# gГ?nstige online apotheke
online apotheke deutschland

# acquisto farmaci con ricetta 2023/09/27 16:17 Rickeyrof

acheter sildenafil 100mg sans ordonnance

# acquistare farmaci senza ricetta 2023/09/27 18:40 Rickeyrof

acheter sildenafil 100mg sans ordonnance

# migliori farmacie online 2023 2023/09/27 20:34 Rickeyrof

acheter sildenafil 100mg sans ordonnance

# farmacia online migliore 2023/09/27 21:55 Rickeyrof

acheter sildenafil 100mg sans ordonnance

# pharmacies in canada online 2023/10/15 7:25 Kiethamert

http://gabapentin.world/# gabapentin 100mg

# prescription online canada 2023/10/16 13:48 Dannyhealm

Always my first choice for international pharmaceutical needs. http://mexicanpharmonline.com/# mexican border pharmacies shipping to usa

# canada mail order drug 2023/10/16 17:23 Dannyhealm

Their international team is incredibly knowledgeable. https://mexicanpharmonline.com/# mexico drug stores pharmacies

# mexican mail order pharmacies 2023/10/16 20:58 Dannyhealm

They offer the best prices on international brands. https://mexicanpharmonline.shop/# mexican border pharmacies shipping to usa

# canadian farmacy 2023/10/16 21:40 Dannyhealm

earch our drug database. http://mexicanpharmonline.shop/# mexican mail order pharmacies

# mexico drug store online 2023/10/17 1:46 Dannyhealm

Their global health resources are unmatched. http://mexicanpharmonline.shop/# mexican border pharmacies shipping to usa

# canada meds online 2023/10/17 4:56 Dannyhealm

They never compromise on quality. http://mexicanpharmonline.shop/# pharmacies in mexico that ship to usa

# how to buy prescriptions from canada safely 2023/10/17 7:45 Dannyhealm

Clean, well-organized, and easy to navigate. https://mexicanpharmonline.shop/# mexican border pharmacies shipping to usa

# best online indian pharmacies 2023/10/17 20:11 Dannyhealm

Medicament prescribing information. https://mexicanpharmonline.com/# reputable mexican pharmacies online

# buying prescription medications online 2023/10/17 23:02 Dannyhealm

They always keep my medication history well-organized. https://mexicanpharmonline.com/# mexico drug stores pharmacies

# canada pharmacies online prescriptions 2023/10/17 23:36 Dannyhealm

They offer unparalleled advice on international healthcare. http://mexicanpharmonline.com/# mexican pharmaceuticals online

# rx canada 2023/10/18 18:05 Dannyhealm

Providing global access to life-saving medications. https://mexicanpharmonline.com/# pharmacies in mexico that ship to usa

# canada meds com 2023/10/19 8:57 Dannyhealm

Their global approach ensures unparalleled care. https://mexicanpharmonline.shop/# mexican rx online

# aarp canadian pharmacies 2023/12/03 2:51 MichaelBum

http://claritin.icu/# ventolin uk price

# Sildenafil kaufen online 2023/12/19 8:52 StevenNuant

https://apotheke.company/# online apotheke deutschland

# rfggrerfgfre 2025/11/26 11:16 MichaelplevE

https://vk.com/public211532114

タイトル
名前
URL
コメント