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 docked buttons, and set to the first child of the stackpanel some shift from border. Is this possible????
Ugly control over the control placing possibility
102 Views Asked by curiousity At
1
There are 1 best solutions below
Related Questions in WPF
- WPF MessageBox Cancel checkbox check
- WPF multiple control property simultaneous changes
- ObservableCollection.CollectionChanged does not select the correct DataTemplate on ToolBar
- Telerik's WPF RadColorPicker NoColorText property not working
- How to automate UI interaction during acceptance test run
- Binding to "this.property" object in VisualStateMenager
- ContextMenu Closes Immediately
- Update ObservableCollection where the items are received from another List
- change content button with trigger
- WPF - How to highlight a combobox border when focused
- Wpf No Highlight on ListBoxItem for Touch Devices
- WPF WebBrowser how best to get Tag trees
- Make a class suitable for Property Change Notification
- WPF Comparing two datatables to find matching values
- how to create folder and file with datetime in wpf application
Related Questions in CONTROLS
- Standard control transparency. Possible?
- Save the state of a dynamic windows form application C#
- Winforms control for displaying html text
- Android control music with headset buttons in a service
- Silverlight Nested Custom Controls results in StackOverflowException
- Git shortlog exclude comments starting with string
- How to choose a word of more than 5 letters?
- Problems with control flow structures using strings
- How can I edit properties of multiple objects in a relatively shorter way?
- C# Vlc ActiveX Play rtsp stream
- Trying to delete the selected item in the XPages repeat control, but does not work
- OpenLayers3 : Draggable OverviewMapControl
- I created code for controlling a image in swing, but I can't see anything, why?
- Add controls dynamically from another class C#
- Controls randomly not showing in my VB6 software
Related Questions in STACKPANEL
- How To Prevent Over Scrolling in Scroll Viewer Windows Phone 8.1
- How to add several button in stack panel with spaces between buttons
- stackpanel Horizontal wrap text WP 8.1
- find index of StackPanel in dynamically filled Listview in WPF
- Horizontal scroll for stackpanel doesn't work
- VB.net code for Stackpanel in WPF combobox
- Dynamic Button is created in different Windows instead of creating in Stackpanel only
- How to Wrap a TextBlock in a Horizontal StackPanel
- Doing onclick on stackpanel (Window Phone 7.0)
- Dynamically display objects according to the size WPF
- VirtualizingPanel in DataGrid
- XAML: StackPanel/GridView in ListViewItem does not take the whole space of the ListViewItem
- WPF - Animating a change in orientation of a stackpanel?
- How do I set WPF's ItemsControl to display each element in a unique location?
- How to hide/show items in a stack panel?
Related Questions in DOCKPANEL
- how to place this wpf dockpanel properly
- WPF ScrollViewer pushing control out of window
- DockPanel Floating Element
- How Load Dockpanel from resource dictionary in c#
- Make ComboBox stretch to available space with maxwidth and right-aligned parent
- GWT simple DockPanel usage error
- Silverlight: Hiding RadPaneGroup problem
- Auto-sizing multiple TextBox(es) within a DockPanel
- WPF Desktop Application layout dilemma
- ListView's height in DockPanel is scaling with items and doesn't stop at the window borders - no scrollbar appears
- Specific docking to the frame
- Resizing contents inside DevExpress Docking Panels
- Keeping WPF grids from getting out of parent bounds
- WPF: Expanders stacked on top of each other where one should be expanded and take all remaining space
- wpf DockPanel issue
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The easiest way would be to place all your controls in a
Canvasinstead of aDockPanel, and useCanvas.Top,Canvas.Left, and `Canvas.ZIndex to position your controls.A different way would be to use
RenderTransformsto adjust the element positioning at runtime.