Pages
-
Recent Posts
- Solution to the fetch puzzle
- Solve puzzle with code
- Windigo 1.1 Released
- Call For Windigo Beta Testers
- ChildWindow Positioning Demo
- Remove ListBoxItem Highlighting Demo
- ChildWindow Positioning
- Remove ListBoxItem Highlighting
- Sideload Windows Phone
- Getting Started with MVVM
- Win Advanced MVVM Book
- SVN Merge – Selecting Changesets
- Code Validation in TortoiseSVN pre_commit_hook
- Using Model-View-ViewModel in WPF Applications
- Use Legacy Printer From Windows 7
-
Recent Comments
- SQL Azure – How to connect SQL Management Studio and import Northwind database | @SPJeff on SQL Azure Notes
- Raju on WPF – LINQ to SQL Sample
- Solution to the fetch puzzle on Solve puzzle with code
- Lorenzo on Call For Windigo Beta Testers
- niroop on Code Validation in TortoiseSVN pre_commit_hook
- sd on WPF – LINQ to SQL Sample
- Call For Windigo Beta Testers on Contact Me
- Zachary on Scrum Tools
- Tammie Oddo on WPF – LINQ to SQL Sample
- MH Lines on Scrum Tools
- Database Version Control – You Don’t Have To Hang Your Head In Shame « Eric Maibach on DbUpdater
- tewari on Database Schema Version Control Tool
- Shannon Holck on Database Schema Version Control Tool
- tewari on SVN Merge – Selecting Changesets
- Rahul on SVN Merge – Selecting Changesets
Tag Archives: demo
ChildWindow Positioning
Silverlight ChildWindow is centered over the parent control. I have extended ChildWindow to open it at a specific position.
Here is a live demo : childwindow-positioning-demo
And here is the code :
public partial class ChildWindowEx : ChildWindow
{
Point _pt = new Point(0,0);
public ChildWindowEx()
{
[...]









ChildWindow Positioning Demo