regarding Windows Store Calendar Control

purav shah

New member
Feb 22, 2016
9
0
0
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
 
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.
 
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.