Is it possible to dock Silverlight based controls like Windows Forms control ? For example I want to use a tab control, which I want to use as a control for page navigation ! Unfortunately I don't find a "Dock" property :-( !
相关问题
- VNC control for WPF application
- How to use Control.FromHandle?
- WPF Binding from System.Windows.SystemParameters.P
- Xamarin. The name 'authorEntry does not exist
- how to Enumerate local fonts in silverlight 4
I am not sure that i understand your question, but you can consider using one of the various WPF layout techniques.
Example:
DockPanel might be helpful.
The Silverlight Toolkit found on Codeplex contains a
DockPanel
control, you will want to use that.