DotNetShoutout - Stories tagged with UserControl
5
Shouts

Create an animated expander

published 999 days, 16 hours, 15 minutes ago posted by jmix90jmix90 1001 days, 22 hours, 9 minutes ago
Thursday, September 23, 2010 6:48:59 PM GMT Tuesday, September 21, 2010 12:54:57 PM GMT
The expander control can be used in a lot of situations but the one proposed by default is quite "rigid". In this post we will discover how to animate it quite simply just via XAML ! The WPF engine lets us redefine the template of the controls and we'll just do that. (more)
category: How To | clicked: 7 | comment | | source: blog.lexique-du-net.com
tags: UserControl, UserControls, Control, How-To, WPF, findName, windows presentation foundation, Template, Expander, How, Tips, controls
3
Shouts

UserControl/Control : how to get a reference to an element of the template

posted by jmix90jmix90 1008 days, 2 hours, 18 minutes ago
Wednesday, September 15, 2010 8:46:24 AM GMT
When you want to create your own custom control you have two choices : creates an UserControl or inherits from one of the "Control's classes" (ContentControl, ItemsControls or Control itself). When doing so you'll surely need to access to the visual parts of your template from the code to add it a nice behavior. *In this post we'll discover how to access the template children by using the FindName method even on UserControl. * (more)
category: How To | clicked: 2 | comment | | source: blog.lexique-du-net.com
tags: UserControl, UserControls, Control, How-To, WPF, findName, windows presentation foundation, Template, How, Tips, controls
6
Shouts

Dean Hume - Rendering a Usercontrol as a String for Webservices

published 1196 days, 23 hours, 35 minutes ago posted by deanomachinodeanomachino 1197 days, 19 hours, 48 minutes ago
Wednesday, March 10, 2010 11:28:54 AM GMT Tuesday, March 09, 2010 3:15:50 PM GMT
Rendering a Usercontrol as a String for Webservices I am currently working a project at work that requires us to use progressive enhancement so that our site is acessible to all users regardless of whether they have javascript enabled. One of the issues that we came across was keeping only one version of the html that we needed to use, regardless whether we were rendering our HTML client side or server side. That way, we only ever had one version of the HTML and this also allowed us to use the sam... (more)
category: Web Dev | clicked: 0 | comment | | source: www.deanhume.com
tags: UserControl, C#, WebService, Ajax