Advanced Forum Search Results
-
you could restyle it pretty easily with AccordionButtonStyle, but we do not have a 'switch' to hide it.
Hope that helps,
-
Hi,
we specifically designed the timeupdown control to be just about time. So a much easier approach would be to combine the control with a datepicker. However, if you really want to go for it, there is an excellent extension point for you to look at: TimeGlobalizationInfo, that will allow you to do much of the formatting and parsing. I'm not ...
-
hi,
you simply add your usercontrol to the Accordion.Items collection. You can still access the variable after that. Alternatively, you can cast the control in the Items collection to your usercontrol. An example where your UserControl is a Button:
Button b = new Button();
accordion.Items.Add(b);
// access it:
b.Content="I've accessed ...
-
Hi,
Did you try setting the horizontal and vertical contentAlignment to stretch?
Hope that helps,
-
Hi,
The xaml creates an accordionitem and then sets a headertemplate and contenttemplate on that accordionitem.
Could you please change that? You should not create an accordionitem in the xaml, and only define the itemtemplate (which becomes the headertemplate in the AccordionItems) and the contenttemplate on Accoridon....
Your xaml would end ...
-
Check out my post here: http://www.sitechno.com/Blog/SlideshowUsingDomainUpDownAndTransitionContentControl.aspx
That might help a little bit with the context. On my blog I wrote a couple of times about the control.
You create a new transition by creating a new storyboard and using it's name as the Transition property.
Like I said, the ...
-
Hi,
I'm glad you enjoy TCC.
The transition is triggered when you change the content. I'm not sure whether I understand your scenario exactly: the fade in works correctly, but your tabs get loaded after that?
At any rate, you are able to finely control what happens by altering the transition. Either create a new one or change ...
-
Hi,
please set vertical and horizontalContentAlignment to stretch.
Thanks,
-
Hi,
this is not a bug in TimePicker, unfortunately, it does presents itself as such.
The explaination and workaround is here: http://silverlight.net/forums/t/108539.aspx
Hope that helps,
-
could you double check that you are using the latest (juli) version of the toolkit?
Thanks,