karlhulme.wordpress.com
February | 2007 | Atomic Blography
https://karlhulme.wordpress.com/2007/02
Masking input to a WPF TextBox. February 15, 2007. Posted by Karl Hulme in .Net. This blog is no longer actively maintained. The content is well over 5 years old – which is like 50 coder years. Use at your own risk! How do you go about masking the input to a textbox. Say you wanted to allow numbers but not letters or any punctuation, how would you do it? Well the simplest way is to trap the TextChanged event…. TextChangedEventHandler(Object sender, EventArgs e) { TextBox textBox. C; } textBox.Text. This ...
marlongrech.wordpress.com
What is WPF? | C# Disciples
https://marlongrech.wordpress.com/a-new-level-of-quality-in-the-user-experience
My life in Avalon …. Often we see movies/TV Serious that use software application with extraordinary user interfaces. An example of such a TV serious would be CSI. The first time I saw an episode I was impressed with the software that these guys were using. Controls unfolding, three-dimensional pages spinning, wow these guys are lucky to have such software applications. Well Guys hold on to your rotating chairs because finally we can do CSI-like UI’s thanks to Microsoft with the mighty WPF. 8220; 0,0.
marlongrech.wordpress.com
HTML5 CSS3 Javascript vs XAML .net and Silverlight | C# Disciples
https://marlongrech.wordpress.com/2012/01/22/html5-css3-javascript-vs-xaml-net-and-silverlight
My life in Avalon …. HTML5 CSS3 Javascript vs XAML .net and Silverlight. January 22, 2012. Introduction The clash of the Titans is on. Developers right this second are at some bar / restaurant / lounge / god knows where else being social i.e. having geeky discussions about technology, what language/platform is best to use or even better what’s coolest right now. CSS3 because WOW its frekin cool! So yea I must admit, web development (presentation layer) of today is becoming loads of fun! So I guess the qu...
marlongrech.wordpress.com
Thinking in boxes | C# Disciples
https://marlongrech.wordpress.com/2012/01/23/thinking-in-boxes
My life in Avalon …. January 23, 2012. So if you have been following my blog lately you would have noticed I am doing some adventures in HTML lately. No I am not leaving my XAML love behind I just feel that I should look at other stuff and get ideas from different technology stacks. I remember back in the days when I used to do web (around 6 years ago) many would layout the page by using a table / . Yes a table believe it or not! Lets say we wanted to do something like this. You can specify left, right, ...
karlhulme.wordpress.com
XPath Variable/Dynamic Parameters in WPF Binding | Atomic Blography
https://karlhulme.wordpress.com/2007/02/14/xpath-variabledynamic-parameters-in-wpf-binding
XPath Variable/Dynamic Parameters in WPF Binding. February 14, 2007. Posted by Karl Hulme in .Net. This blog is no longer actively maintained. The content is well over 5 years old – which is like 50 coder years. Use at your own risk! The XML binding support in WPF is excellent and just about anything you’ve ever wanted to know about it’s binding support can be found on Beatriz Costa’s. Blog However, as raised by Grae Foster in a recent WPF Forum. It’s not, and better explained by example. In the xml abov...
marlongrech.wordpress.com
Timeouts for long running operations… | C# Disciples
https://marlongrech.wordpress.com/2012/01/19/timeouts-for-long-running-operations
My life in Avalon …. Timeouts for long running operations…. January 19, 2012. Today I stumbled upon a timeout issue while building a web application and felt like I need to share this for those that like me wasted/are wasting hours trying to figure out why you are getting a timeout. Here is a diagram that show the structure of the request response stack I have. The reason why I went for an AsyncController. Well AsyncController also have a timeout (or 90seconds as per MSDN doc), you also need to set the t...
marlongrech.wordpress.com
Join us at Thynk Software | C# Disciples
https://marlongrech.wordpress.com/2014/02/09/join-us-at-thynk-software
My life in Avalon …. Join us at Thynk Software. February 9, 2014. DISCLAIMER: This is classified as an old boring recruitment post but hey it’s one I need to call out… I just founded a new company, Thynk Software. And I need smart guys that can help me grow and execute projects. Would love to hear from you. I am sure that together we can figure out a way to work together! This entry was posted in WPF. WPF Radio Buttons… “Once it is checked it just won’t uncheck”. July 31, 2014 at 6:00 pm. C#, Java or php?
yilinglai.blogspot.com
Open Source / C++ / WPF: August 2008
http://yilinglai.blogspot.com/2008_08_01_archive.html
Open Source / C / WPF. This blog records my personal technology notes, and the content is provided as-is, with no warranties and confers no rights. Saturday, August 16, 2008. Dynamic ToolTip of ComboBox. Some guys discussed one problem about the dynamic ToolTip of ComboBox control. The owner of forum thread. Want ComboBox to display the SelectedBoxItem content as the ToolTip property. He directly binding ToolTip by ElementName source, which looks like this:. Give us the correct sample code:. Binding engi...
yilinglai.blogspot.com
Open Source / C++ / WPF: Dynamic ToolTip of ComboBox
http://yilinglai.blogspot.com/2008/08/dynamic-tooltip-of-combobox.html
Open Source / C / WPF. This blog records my personal technology notes, and the content is provided as-is, with no warranties and confers no rights. Saturday, August 16, 2008. Dynamic ToolTip of ComboBox. Some guys discussed one problem about the dynamic ToolTip of ComboBox control. The owner of forum thread. Want ComboBox to display the SelectedBoxItem content as the ToolTip property. He directly binding ToolTip by ElementName source, which looks like this:. Give us the correct sample code:. Binding engi...
pavanpodila.blogspot.com
Pavan Podila's Blog: Using the “assembly” when mapping clr-namespace
http://pavanpodila.blogspot.com/2006/06/using-assembly-when-mapping-clr.html
The Approach rather than the Solution. Monday, June 05, 2006. Using the assembly when mapping clr-namespace. I was playing around today with Data binding in WPF using the ObjectDataProvider. It is a powerful concept and you can apply it effectively if you understand it well. Beatriz Costa. Has been blogging for a while about DataBinding and her blog is a great resource. Http:/ schemas.microsoft.com/winfx/2006/xaml/presentation. Http:/ schemas.microsoft.com/winfx/2006/xaml. I have had enough trouble debug...