regarding Windows Store Calendar Control

purav shah

New member
Feb 22, 2016
9
0
0
Visit site
Hello Windows cetral all user,
I am new as developer and going to develop app with this calendar control and want to open it when I tapped on stackpanel. but still I didn't get found any kind of solution.

so please help me with example for this.
even I have seen lots of application who has implement calendar like this so please help me.

thanks

regards

purav shah
 

Laura Knotek

Retired Moderator
Mar 31, 2012
29,423
37
48
Visit site
Welcome to Windows Central.

I've moved your thread to the Developers Corner forum, since you will be better able to get help from fellow developers, rather than regular users.

Good luck with your apps.
 

slooksterpsv

New member
Feb 12, 2014
348
0
0
Visit site
Better yet, let me redo this post. So I am using caliburn, here's the xaml:

Code:
        <StackPanel Background="#55000000" I****TestVisible="True" cal:Message.Attach="[Event MouseLeftButtonDown]=[Action HideShow()]" >
            <Grid I****TestVisible="True">
                <Calendar Visibility="{Binding IsCalendarVisible, Converter={StaticResource BooleanToVisibilityConverter}, FallbackValue=False}"></Calendar>
            </Grid>
        </StackPanel>

Heres the c#:
Code:
private bool _isCalendarVisible;
        public bool IsCalendarVisible
        {
            get { return _isCalendarVisible;}
            set { _isCalendarVisible = value; NotifyOfPropertyChange(() => IsCalendarVisible); }
        }

public void HideShow()
        {
            IsCalendarVisible = !IsCalendarVisible;
        }

The same principles apply.
 

Members online

No members online now.

Forum statistics

Threads
326,671
Messages
2,248,735
Members
428,537
Latest member
Milnertime04