First time here? You are looking at the most recent posts. You may also want to check out
older archives.
Please
leave a comment, ask a question and consider
subscribing to the latest posts via RSS or
email. Thank you for visiting!
Advertisement
You are looking at a partial list of posts.
Please
leave a comment, ask a question and consider
subscribing to the latest posts via RSS or
email. Thank you for visiting! Below is a list of entries related to:
childwindow.
My site contains more than just the information below and I'd encourage you to visit the
home page to view
current information as well as other items/categories that might be of interest.
There are 4 entries for the tag
childwindow
I was talking with a good friend the other day about some feedback about DataForm. It’s great to get raw and honest feedback…that’s where you improve more than ‘it sucks’ type feedback. One of the use cases he felt would be common with the Silverlight DataForm control (available in the Silverlight Toolkit) was the concept of confirming the delete action. I agreed as well that confirming permanent delete actions is a common line-of-business application pattern. It got me thinking about some things… The Problem DataForm is a great control. I love it. It will benefit many developers in...
I got enough feedback and suggestions that I figured it would be better just to put the code up on CodePlex rather than package zips on my blog :-). Here it is: FloatableWindow project. The latest build I have is up there which incorporates some feedback that I’ve received.
UPDATE: If you like this idea VOTE FOR IT in the Silverlight Toolkit!
Basically the ShowDialog() API operates the same way that ChildWindow.Show() does today. No changes there, popup is used. But when you just want some simple MDI type windows, use Show() which will not use Popup but rather add the elements...
UPDATE: FloatableWindow is now on CodePlex for easier community contributions and management of latest source and builds. FloatableWindow CodePlex Project. If you like this idea VOTE FOR IT in the Silverlight Toolkit!
A while back I wrote a post where I refactored the Silverlight ChildWindow to create a non-modal window and I called it FloatableWindow (you can see why I’m not a good marketer…hey I could have called it Microsoft Silverlight ChildWindow Refactored Edition Express). A few folks found it useful, for which I’m appreciative of the comments.
My buddy Karl Shifflett decided to use it in Glimpse as the diagnostic window –...
UPDATE: FloatableWindow is now on CodePlex for easier community contributions and management of latest source and builds. FloatableWindow CodePlex Project. If you like this idea VOTE FOR IT in the Silverlight Toolkit!
I’ve seen a few comments/requests incoming lately that people like the ChildWindow control in the Silverlight 3 SDK. This is a great control that creates a modal dialog for you. When you use it, it disables your root layout application and shows the dialog you provide:
This is great for those true modal needs. It responds to normal windows DialogResult type responses if you have buttons, etc. – great...