Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Scheduler border thickness (Read 3070 times)
zodraz
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 29
Joined: Jan 14th, 2011
Scheduler border thickness
Mar 3rd, 2011 at 3:21pm
Print Post  
Hi,
     I want to change the border (the stroke thickness) of the month range displaying on the scheduler, so I can see on every month a border, so the months are more clearly displayed. Is this possible?

Thanks,

Zodraz
  
Back to top
 
IP Logged
 
Meppy
God Member
*****
Offline


MindFusion support

Posts: 1783
Joined: Jul 20th, 2005
Re: Scheduler border thickness
Reply #1 - Mar 3rd, 2011 at 3:36pm
Print Post  
Set Calendar.MonthSettings.CalendarStyle.BorderBrush and Calendar.MonthSettings.CalendarStyle.BorderThickness properties. Or in XAML:

Code
Select All
<p:Calendar x:Name="calendar" CurrentView="MonthRange" >
      <p:Calendar.MonthSettings>
            <p:MonthSettings>
                  <p:MonthSettings.CalendarStyle>
                        <p:CalendarStyle BorderThickness="1" BorderBrush="Red" />
                  </p:MonthSettings.CalendarStyle>
            </p:MonthSettings>
      </p:Calendar.MonthSettings>
</p:Calendar> 


Let me know if this helps.

Regards,
Meppy
  
Back to top
 
IP Logged
 
zodraz
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 29
Joined: Jan 14th, 2011
Re: Scheduler border thickness
Reply #2 - Mar 3rd, 2011 at 3:44pm
Print Post  
Cool Meppy!!!!Working perfectly!

Thanks!
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint