Tagged Questions
The dockpanel tag has no wiki summary.
6
votes
2answers
2k views
How can I get Silverlight 4 Tools to work in Web Developer 2010 Express?
I installed Windows 7.
I then installed Web Developer 2010 Express from here with the Web Platform Installer.
I then installed the the April 15 release of Silverlight 4 Toolkit from here.
I then ...
4
votes
4answers
2k views
Dock Panel component for .NET that allows docking inside tab-pages?
I want to build a user-interface that, for historical reasons, has a lot of "columns" of information. Many of these aren't relevant for all users in all cases, so I thought I'd look at dock panels to ...
4
votes
3answers
3k views
How to get a TextBlock to wrap text inside a DockPanel area?
What do I have to do to get the inner TextBlock below to wrap its text without defining an absolute width?
I've tried Width=Auto, Stretch, TextWrapping, putting it in a StackPanel, nothing seems to ...
3
votes
2answers
678 views
WPF Dockpanel first child uses remaining space
In a window I have there is a list of DockPanels to specify a couple of files. Each DockPanel has a TextBox (for the path) and a button (to browse for a file).
I've recreated a simple WPF page to ...
3
votes
3answers
560 views
DockPanel Tab Order
I have a DockPanel set up in the DataTemplate of an ItemsControl as below:
<ItemsControl HorizontalContentAlignment="Stretch">
<ItemsControl.ItemTemplate>
<DataTemplate>
...
3
votes
2answers
1k views
How programmatically dock new element to DockPanel
How programmatically create an element based on UserControl and dock it to the DockPanel?
3
votes
3answers
896 views
How do I programatically change a DockPanel in WPF?
Note: By Request, I have added the full code for my XAML and xaml.cs files.
In WPF, I have created a DockPanel like so:
<Window x:Class="RealEditor.Window1"
...
3
votes
2answers
2k views
How to make a StackPanel Width that of another StackPanel?
I have two dockpanels which each have a left StackPanel.
The width of the bottom StackPanel is determined by the width of the text is in it.
The width of the top StackPanel should be the same as the ...
3
votes
2answers
4k views
How to make DockPanel fill available space
I'm trying the content of a shopping cart in an ItemsControl(ListBox). To do so, I've created the following DataTemplate:
<DataTemplate x:Key="Templates.ShoppingCartProduct"
...
3
votes
1answer
717 views
Why does DockPanel.Dock=“Bottom” put element at the top?
The following code puts the two text elements at the top even though the second one is marked "Bottom". The background color goes all the way to the bottom so the DockPanel seems to stretch to the ...
3
votes
1answer
887 views
Need a Mono-compatible WinForms docking library
I've been looking for a Visual Studio-like docking library for WinForms, but the two most popular and complete options (WeifenLuo.WinFormsUI.Docking and the MagicLibrary) both use P/Invokes ...
3
votes
3answers
154 views
How do I find out what originally caused an exception, if it gets thrown from Microsoft's code?
I have two controls containing DataGridViews on different panes in a DockPanel. If one is in edit mode and I switch pane, I get a NullReferenceException thrown from within the DataGridView's ...
2
votes
1answer
38 views
Wpf controls overlay?
I have Dockpanel on which there are two buttons (left and right sides) and a scrollviewer at the bottom. Is it possible to hide the left and right sides of this scrollviewer UNDER this buttons?
2
votes
1answer
598 views
State and status of AvalonDock, options to AvalonDock
I'm working on a WPF interface that could use AvalonDock, or a similar dockable windows interface. My understanding is that AvalonDock is a pretty good dockable window interface, but I'm a bit worried ...
2
votes
1answer
1k views
Can You build a DockPanel like Visual Studio in WPF
In Visual Studio, we can add various panels like SolutionExplorer Panel, Properties Panel,etc.
Also we can minimize these panels and maximize these panels.
I want to design a dockpanel similar to ...
2
votes
1answer
955 views
WPF: Align last TWO controls in StackPanel/DockPanel on the very right side
Thats my code so far which does not work:
<DockPanel >
<Button Content="Start" Command="{Binding Path=FirstDateCommand}" />
<Button Content="Back" ...
2
votes
4answers
499 views
Using Mac-style dock menu in an application. Illegal?
I was planning to use a dock menu similiar in looks and behavior to the Mac OS X dock menu in an application. It seems that apple have patented their dock about a year ago.
I've seen some websites ...
1
vote
3answers
70 views
Elements of a DockPanel that share the same scrollbar?
Here is the code I have :
<ScrollViewer Grid.Row="2" CanContentScroll="True">
<DockPanel>
<TreeView x:Name="tView" DockPanel.Dock="Top" VerticalAlignment="Stretch">
...
1
vote
1answer
56 views
DockPanel doesn't use whole space in ListBox, but outside it does
In my Windows Phone application I'm using the DockPanel to align two buttons: one on the left side of the screen (PanoramaItem), second - on the right.
This code works well:
...
1
vote
1answer
106 views
Have WPF Window resize automatically based on the remaining area in DockPanel
I have a scenerio where I want to dynamically render a custom form object. This form is similar to a WinForms form. It will display one of more button bars, buttons can only live within a button bar ...
1
vote
0answers
80 views
Restricting size of child control in a panel to visible area
I can never seem to wrap my head around the differences between the DockPanel, StackPanel and Grid in terms of restricting their children content. This XAML:
<DockPanel>
...
1
vote
1answer
51 views
Sidepanel with Qt
I'd like to implement a sidepanel in my Qt window. I search something like the one that is used in the Visual Studio (see below).
Important notes:
The widgets don't have to be moveable
resizing ...
1
vote
3answers
107 views
How to remove the button inside a Dockpanel from layout - WPF
I have a dockpanel with two buttons inside
<Window x:Class="PracticeWPF.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
1
vote
1answer
182 views
How to remove user control from dock panel
RoomDiagram rd = new RoomDiagram();
maincDockPanel.Children.Remove(rd);
when i wright this nothing happens.
how i can remove child and then add new one? thanks
1
vote
2answers
800 views
GWT simple DockPanel usage error
why this "code" fails
<g:DockPanel unit="px">
<g:south size="100">
<g:TextBox ui:field="host" text="localhost"/>
</g:south>
<g:south size="100">
...
1
vote
1answer
692 views
Silverlight: Hiding RadPaneGroup problem
Hi i am facing a very strange problem.
My requirement is to have a tree on the left hand side of a page a view on the right hand side of the page. Clicking various nodes of the tree shows different ...
1
vote
0answers
258 views
Make ComboBox stretch to available space with maxwidth and right-aligned parent
I'm having a problem achieving the layout i want.
This is my code:
<DockPanel DockPanel.Dock="Bottom" HorizontalAlignment="Right" LastChildFill="True">
<Label ...
1
vote
1answer
55 views
right dockpanel
i a newbie in xaml and i need your help about tabcontrol
i want to make a tab control with tab panel or dock panel in right..
if we follow this :
<TabControl>
<TabItem Header="first" />
...
1
vote
1answer
557 views
WPF4 TabControl/Grid in a DockPanel is hiding StatusBar
I have a window filled with a DockPanel containing 3 elements, a MenuBar docked at the top, a StatusBar docked at the bottom and a TabControl filling the body.
At least, I would like the TabControl ...
1
vote
3answers
452 views
DataGrid vertical scrollbar problems after resizing
I'm working with a DataGrid in Silverlight.
If I have enough items so that the vertical scroll bar is visible for all sizes of the window, and I re-size the window a few times, the vertical scroll ...
1
vote
1answer
2k views
Unable to use DockPanel within Silverlight project C#
I am currently trying to resize a Telerik graph by placing it within a DockPanel because the Y axis label text keeps getting clipped when the graph is resized using ...
1
vote
3answers
728 views
How to access controls on an inherited form?
I'm using the DockPanel Suite in my winforms app. The DockContent class is derived from System.Windows.Forms.Form class and my two forms, dockRounds and dockToolbox, inherit from the DockContent ...
1
vote
2answers
468 views
Why will my modules not fill the full DockPanel in my Shell.xaml?
In my Shell.xaml I want two modules to each take up half the height and be expandable. Why is the first module being cut off?
Shell:
<Window x:Class="HelloWorld.Desktop.Shell"
...
0
votes
2answers
51 views
WPF Desktop Application layout dilemma
I want to develope my first real WPF Desktop Application. It's quite a lot of time since my last desktop application, which was developed with .NET 2.0 and Windows Forms. Since i have to develope a ...
0
votes
0answers
23 views
Docked panel in floating state is not displayed in WPF
I am using DockableControlPane (Infragistics control to display Docking) and displaying it in floating mode in the WinForm say Form1
This Form1 is used in the WPF application using ...
0
votes
2answers
71 views
DockPanel sizing issue
I have a problem with the DockPanel component. When i resize the panel I don't want the horizontal ScrollBar to appear, but instead I want the left content to be resized also at the cost to lose some ...
0
votes
2answers
78 views
How can I use dockpanel in Linux/Mono with all its features?
I would like to use dockpnael suite in Linux or Mono platform. I heard that there is some methods to modify the source code of dockpanel so that it can be used in Linux platform with all its features ...
0
votes
1answer
61 views
Scrollviewer having issues with Dockpanel
I'm using a Dockpanel as my main panel for my layout. The toolbar on top is set to top, while the side panel is set to left. The documentviewer is set to fill by LastChildFill.
The problem is that ...
0
votes
0answers
120 views
dockpanel for javascript
Does anybody know a dockpanel-component like http://sourceforge.net/projects/dockpanelsuite/?filter=thumbs_down#reviews-n-ratings or like the Dock-Panels in the Microsoft Visual Studio for javascript?
...
0
votes
1answer
30 views
Ugly control over the control placing possibility
I have the dock panel, two buttons on which docked to left and right corners and a stackpanel with controls located on it. I need to put a part of left and right sides of the stackpanel under this two ...
0
votes
2answers
63 views
wpf DockPanel issue
I have DockPanel with ListView and StackPanel:
<DockPanel Margin="5" LastChildFill="True">
<ListView Margin="5" ItemsSource="{Binding Source={StaticResource taxGroupSource}}" ...
0
votes
3answers
301 views
Way to make WPF DockPanel auto-resize based on its children's size?
Right now I have a DockPanel that contains a toolbar and BrowserWindow. When I re-size the BrowserWindow to fit content, I want that change to propagate up into the DockPanel and re-size ...
0
votes
3answers
142 views
GTK+ Dock Panel like visual component
I'm developing a small desktop application using python. I want it to be multi platform, and have a GUI similar (but simpler) to Eclipse. I know that the component that works just like eclipse layout ...
0
votes
1answer
33 views
Replicate the Visual Studio 2005 interface
I was wondering how to replicate the Visual Studio 2005 graphical user interface to create a LOB application. I have tried DevExpress controls but they cannot provide the System render mode. Then ...
0
votes
1answer
263 views
How to make a WPF TextBox fill all available space between two buttons ?
I'm trying to make a WPF TextBox fill all available space between two buttons. For some reason the code below does not what I'm trying to achieve
<DockPanel Height="48" LastChildFill="False">
...
0
votes
1answer
476 views
WPF Drag Drop Panel (like iGoogle, BBC website, blacklight)
Does anyone know of any control libraries that provide layout management functionality along the lines of iGoogle, the BBC website or the blacklight drag drop panel? The blacklight drag drop panel ...
0
votes
0answers
312 views
C# DevExpress - Possible that a Dock Panel not closing after press Escape?
a control in the dock panel used the esc-keydown event to close a TopMost Form.
But the keydown event wasn't fired. The dock panel was closed and then nothing...
The TopMost-Window allready open and ...
0
votes
2answers
169 views
WPF can we swap panels (DockPanel, StackPanel)?
I want to create two diffent types of DockPanels. If the user clicks on one link, it loads DockPanel #1 otherwise it loads #2.
Can we dynamically swap them? I'm new to WPF. In REALBasic, I'd use ...
0
votes
5answers
563 views
c# WPF how to set location,width and height of the controls programatically?
im doing my first WPF application. im having problem whereby when my form is maximized or fullscreen, my controls wont resize and just stay in the same location. only the form is maximized.
in ...
0
votes
2answers
220 views
WPF Add Button To Bottom Of Treeview
this is probably going to seem like a daft question but please bear with me as I am very new to WPF, UI is sadly not my main area of skills and so I'm struggling to get my head around the concepts of ...