Multiline editable combo in WPF
Today I am going to share a interesting learning experience that I had about editable combo box. In one of my project we have a requirement that all editable text need to support multi-line support. very easy stuff. Just set IsEditable property of combo box to "true".
1: <ComboBox x...
[More]
Light box effect with WPF.
Light box effect is becoming a trend to show modal dialog in both web and desktop applications now a days. In WPF we can also achieve this goal with little effort. Its not actually a light box but give users a elusion of a light box. Wpf Container controls display last element of the logical ...
[More]
Display html Content in WPF (XBAP)
Story of displaying html content in WPF or XBAP (WPF browser application) begins with a simple requirement, we have to show printer friendly version(which is a html content) on few reports in our project that run on Internet and which is a WPF browser application. Well it is a quite simple requireme...
[More]
A beginner's guide to WCF in XBAP
Download WcfFromXbap - 883.06 KB Contents Development Platform Introduction Prepare the stage Creating the projects and necessary files Configure the WCF for XBAP Consume WCF Service from XBAP Debugging WCF Service Deploying your solution Using the WsHttpBinding configuration A quic...
[More]
Install WCF & Asp.net in IIS7
II7 is the default Internet information server for Window vista and window server 2008. In few cases I found that WCF and asp.net 2.0 is not working in iis7. This short of problem is often encountered, if you install dot net framework first and then install IIS7. To resolve any kind of issue reg...
[More]
Window Close Event of Browser
"Window close event of browser"... people is searching for this key sentence for long and found some solutions also. But sorry to admit that there is no direct support for detecting the window close event of browser or perhaps browser's tab in html or JavaScript. All we have few nice trick of html D...
[More]
Improved Resource file project template in vs2008
Visual Studio 2008 resource file project template is now more improved! and more usable.It has very user friendly and easy to edit environment, providing the user with the ease of managing resource better than ever. I have been using resource file since Visual Studio 2003. Previously I got to write...
[More]
Using Background Process in WPF
WPF applications often needs to call time consuming methods or processes, the time consuming methods or processes can be, huge time consuming calculation or perhaps a web service call. In case of WPF specially XBAP (wpf browser application) which run on remote client machines browser, this sort of c...
[More]
Wpf Image ,Working with Image Source
Hi after a long time I am back in my blog. In this post I will discuss few things about WPF image object. Recently I have been working in a project whose UI Layer is build entirely with windows presentation foundation. Background WPF has another way to display image. That is, using BitmapImage ...
[More]
No Scroll content of wpf xbap in iframe
In my previous blog post i have discussed about how to hide the navigation ui of xbap while you hosting Xbap ( Xaml browser application) in iframe. Note that xbap can be accessed directly from browsers url address and can also be viewed in a iframe in existing web site. In both case user can have co...
[More]