Hey so, quick question, Im currently trying to figure out a way to implement a way for people to be able to pick a day within 3 weeks of the current day for their service, but I don’t know how to implement dates very well for this type of case in fusetools. Any suggestions or links to where I could find some ideas?
Here is the UX code for what it more or less looks like, I just need these days to have a date attached to them, not just be a simple string.
This Week <SASi.Text FontSize="24" Alignment="Center" Margin="0,20,0,20" >Next Week</SASi.Text>
<SASi.DateButton Text="Monday" Clicked="{NextMonday}" />
<SASi.DateButton Text="Tuesday" Clicked="{NextTuesday}" />
<SASi.DateButton Text="Wednesday" Clicked="{NextWednesday}" />
<SASi.DateButton Text="Thursday" Clicked="{NextThursday}" />
<SASi.Text FontSize="24" Alignment="Center" Margin="0,20,0,20" >Two Weeks</SASi.Text>
<SASi.DateButton Text="Monday" Clicked="{TwoMonday}" />
<SASi.DateButton Text="Tuesday" Clicked="{TwoTuesday}" />
<SASi.DateButton Text="Wednesday" Clicked="{TwoWednesday}" />
<SASi.DateButton Text="Thursday" Clicked="{TwoThursday}" />
</StackPanel>
</ScrollView>