Tagged Questions
0
votes
1answer
9 views
WPF SharedGridSize group with ItemsControl embedded Grids
I am trying to embed multiple grids within another grid using an ItemsControl and have all the child grids share the same row heights:
<Grid>
<ItemsControl ItemsSource="{Binding ...
-5
votes
0answers
63 views
How to split WPF layout into 2 equal columns. i.e. 50% of parent [closed]
I am trying something quite simple but cannot achieve it (elegantly if possible). So I want two columns, each 50% width of its parent. When the parent resizes, as do these columns.
Simple? Show me ...
0
votes
0answers
36 views
Layout does not use the complete space in landscape
I am trying to make my app landscape ready but I have some strange problems when positioning elements within a grid. My resolution I am testing with is 480x800.
First example: This looks good as ...
1
vote
2answers
47 views
Auto height in WPF usercontrol
Suppose I have the following XAML.
How can I achieve that outermost Button has such height so that text from TextBlock is completely visible?
<StackPanel>
<Button ...
0
votes
2answers
32 views
Using “pure” xaml layout, is it possible to tell a container to not resize to it's children?
I have a XAML control that's very wide. It affects the size of it's parent, thus changing layout I don't want it to change. I don't mind if the control will be clipped, or whatever - but I want the ...
0
votes
2answers
109 views
Create a tabbed WPF menu, “ESET Antivirus” - Style
I'm looking for a way to create an application layout for a little tool that looks like the ESET Antivirus UI:
I thought, that I take a TabControl and do a complete Restyling on this whole thing. I ...
0
votes
1answer
66 views
xaml layout introduction for Qt programmer
I am used to Qt and its Qt Designer.
XAML with its layout controls 'grid' and 'StackPanel' are somehow similar, but I still miss or do not find some of the most common properties of designs in Qt. ...
0
votes
1answer
199 views
buttons in stackpanel do not stretch with Windows Store app
When I tried a simple stackpanel with 2 buttons in a Windows Store project:
<Page ...>
<StackPanel>
<Button>Button 1</Button>
<Button>Button ...
4
votes
2answers
395 views
Limit maximum width of “Auto” column in WPF data grid
I have a standard WPF grid with 2 columns defined as:
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" MinWidth="200" />
<ColumnDefinition ...
2
votes
0answers
332 views
pixel align on windows phone 8 devices
I am trying to display a simple fullscreen bitmap on WP8 device (Lumia 920).
It has 1280x768 screen, using ScaleFactor 160 and virtual resolution of 800x480.
Here is the result of displaying ...
1
vote
1answer
281 views
XML-based layout for iOS
When developing an iOS application (CRUD-like, not a game) one basically has two options:
use Interface Builder for layout
layout everything in code
Assume that I don't want to use Interface ...
4
votes
1answer
183 views
Two layouts for two aspect ratios (4:3 and 16:9) - changing automatcly
Following the Microsoft scale guidelines there is a part where it says:
When designing a fixed layout, start by designing your layout for the baseline resolutions: 1024x768 and 1366x768.
...
0
votes
1answer
201 views
WPF center grid content
I need to create a line with the first point centered to the Grid it is contained in (without manually setting Width/Height of Grid). Here is very simple code sample I want to update so I have one ...
5
votes
2answers
934 views
Windows Phone ListBox Item Background Changing Color Even Though It's Set Explicitely
I am looking for 1) what is going on, and 2) how to fix the issue.
Issue
If a ListBox Item height is above 2521, it seems to change the background to black even when the background is explicitly set ...
0
votes
2answers
73 views
Margin in wrappanel
I'm using WPF's wrappanel. the problem is that in the right side of it there's an empty space that I would like to reduce and I don't know how.
in the pic below you can see the right against the left ...
1
vote
2answers
37 views
font alignment off
I am expecting two different font styles on the same row in a grid to be aligned at the bottom of the grid row but as you can see, it isn't happening!
Does anyone see what I need to change?
Cheers,
...
0
votes
1answer
123 views
How to constrain/layout D3D rendering within a SwapChainBackgroundPanel?
From within a C++/CX XAML application, how and when do I get information from the XAML layout engine to know where a particular control or grid position ended up, so that I can target my rendering to ...
1
vote
2answers
62 views
A control not contributing to the size of its container
This is somewhat hard to explain, but I'll try my best.
I currently have a grid with two columns and several rows.
I only want the controls in the second column to contribute to the height of the ...
0
votes
1answer
270 views
StackPanel orientation not fully horizontal on ItemsControl
I have the following issue.
i'm using Items control and I dont understand why my result is on several lines instead of being on a single line.
This is my code :
<StackPanel ...
1
vote
1answer
261 views
A flow layout container in win8 app
I have a few items inner a GridView, I hope they locates like:
<------- fixed size: 600 --------->
[ Item 1, lengh 300 ][ Item 2, lengh 300 ]
...
3
votes
2answers
2k views
Aligning controls on both left and right side in a stack panel in WPF
I have the following code:
<DockPanel>
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal">
<RadioButton Content="_Programs"
IsChecked="{Binding ...
0
votes
1answer
65 views
margin best practise
If I have a Horizontal StackPanel with many elements, with different margin between them:
Is there any difference if I give each element a left margin or
is there some advantage giving every second ...
2
votes
2answers
460 views
Scroll/fit image with checkbox
I want to show image and add checkbox "Fit to screen" - fit image to visible area.
To fit image to visible area I use the following xaml fragment:
<Image Source="{Binding Picture}" ...
0
votes
2answers
373 views
Horizontal-Oriented ListBoxItems won't stretch
I am trying to stretch the ListBoxItems when using a WrapPanel and Orientation="Horizontal":
<ListBox HorizontalContentAlignment="Stretch" ItemsSource="{Binding SomeCollection}">
...
0
votes
1answer
118 views
Width of controls inside listbox not changing after orientation change
I have a grid inside stackpanel which is inside a listbox.
This grid has a few control elements like rectangles and textblocks.
They stretch to the entire width in portrait but not in landscape.
...
0
votes
2answers
87 views
Unexplained grid layout width behavior
A novice at WPF / XAML, I've been wrestling with layout and trying to get it uniform. I'm using a listbox of grids, with different data in different columns. I'll start by saying the desired ...
4
votes
2answers
96 views
Making ItemsControl childs resizeable with a splitter
I want to insert widgets into my ItemsControl and make them resizeable. How do I achieve this?
This is my XAML:
<ItemsControl ItemsSource="{Binding TestForList, Mode=OneWay}">
...
0
votes
1answer
120 views
Custom control sizing/placement issue
I'm trying to create a custom control with C#/WPF. See below for the XAML of my control, and a window I'm trying to put it into.
The problem: When I set the HorizontalAlignment or vertical alignment ...
1
vote
1answer
744 views
stackpanel triggers and storyboard
When setting my stackpanel triggers for my expander content I begin a story board animation but how can I use the story board animation the same way in reverse?
<BeginStoryboard>
...
-1
votes
1answer
1k views
Expander header text alignment
So I changed the orientation of the expander to align vertically rather than horizontally but in the closed state the expander header text is aligning horizontally. Please tell me there is a way to ...
0
votes
1answer
158 views
Two expanders beside each other wont expand the latter
For some reason when I set two expanders beside one another, the first expander seems to be behind the second one and wont expand out the expander set beside it? Is there a way I can fix this in the ...
-1
votes
1answer
750 views
Expander vertical alignment
Hi I want to make this expander align veritically rather than horizontaly with the arrow facing vertically aswell atm it looks like this:
Open:
Closed:
<StackPanel>
...
0
votes
2answers
1k views
Horizontal Stackpanel Fill Parent Control
Is it possible to have a <StackPanel> or labels (or buttons, whatever) going horizontally across it's parent control (e.g. Window) and have it fill out all the space allowed?
For example if I ...
1
vote
2answers
191 views
How to prevent this layout cycle?
The picture shows these little gaps. The big, blue containers between the gaps are content holders which widths are determined. The red border is the resizable holder.
So the two outer gaps ...
2
votes
3answers
482 views
How to right align RadioButton in WPF
Trying this tutorial
http://www.wpftutorial.net/ListBoxDataTemplate.html
and thought of adding a radio button as follows
<ListBox Margin="10" ItemsSource="{Binding}">
...
4
votes
2answers
170 views
Auto Layout Increasing Number of Controls
I am somewhat new to WPF and hopefully I'm not asking for the world here but I'm looking for advice/direction on how to go about implementing something like the following.
I'd like to have my ...
0
votes
2answers
315 views
Listbox item in pivot control doesn't get all available space
I have simple page with pivot control and listbox inside, but I cannot make listbox to stretch to get all available space.
Templates:
<phone:PhoneApplicationPage.Resources>
...
2
votes
2answers
142 views
Layout control for elements with a distributed width
I'm not exactly sure how to phrase this question, so I'll just explain what I'm trying to do. I have a Model/ViewModel that essentially contains a list of elements. Some elements on the list should be ...
2
votes
1answer
369 views
Textwrapping within Textblock within Togglebutton within ListBox ItemTemplate
I'm trying to achieve a ToggleButton control template for listbox items. This is to be used in an application where the user can click on the listbox items to show a certain piece of functionality.
...
1
vote
2answers
150 views
Window set to size around content leaves gap on each side
Can someone please tell me why, even though I've set my Window to SizeToContent and my content is Width=40 does the app load bigger across the Width?
The following example sizes to height, but the ...
1
vote
1answer
553 views
Anchoring Web Browser control to all four sides
I have a web browser control inside the WPF window.
The web browser should resize with the resizing of the main window. In a sense, all the four sides should be anchored with the MainWindow to be able ...
0
votes
3answers
42 views
Need advice on scrolling layout
i am currently working on a sample for a lib that i wrote,designed to execute WebRequests such as POST and GET safely. At the moment i am trying to figure out a way to show the response of the request ...
1
vote
2answers
524 views
Create a square border, with image inside and width and height dependent to uniform grid colum
I think this is a little tricky problem.
I have a ListBox that must present some images and each image must be put inside a rectangle or a square border. This is simple, I know. The fact is that this ...
1
vote
2answers
291 views
Combining images in rectangle, if i hide rectangle, images should be hidden too
I am using a rectangle and putting emotion images in it, and i want to do is if I make the rectangle hidden, the emotion images in it should be hidden.
I am attaching an image for help in it.
...
1
vote
1answer
189 views
Can a Border fill the space of a Stackpanel without setting the width explicity?
Here is some xaml that displays a Stackpanel containing two Borders side by side. I want to make the second Border fill up the remaining area of the Stackpanel so that the red background of the ...
1
vote
2answers
657 views
Windows Phone User Control does not stretch in ListBox
I want the items inside ListBox to fill all allotted space. But they don't. They use only the amount of space they need.
ListBox looks as follows:
<ListBox x:Name="StripesList" Grid.Row="1">
...
2
votes
2answers
119 views
WPF DataGrid can't reproduce WindowsForms datagrid resizing behaviour
I'm looking over the web to reproduce a behaviour that I used almost every time in windows forms:
Columns resize to allow content to fit, if there isn't enough space a scrollbar appear.
If I, for ...
1
vote
2answers
235 views
Right Align contents of a Vertically Oriented StackPanel
I want to right-align the contents that are displayed in a vertically oriented StackPanel, I've tried HorizontalAlignment="Right" on the StackPanel itself and the control in the ListBox's DataTemplete ...
1
vote
3answers
252 views
Combobox won't select any item when clicking in margin between items
This problem is probably best explained with a video. See here: http://youtu.be/r_phl8g9AzY
Basically, selection in my combobox works just fine when the mouse is over the selection rectangle, but ...
-1
votes
1answer
568 views
Letting a child control width size to fit and limiting its max value
Edit: I try rephrasing my question, sorry if it was not clear. Thanks to all anyway.
Say I have a UserControl whose layout has a grid with 1 row x 3 columns, the first 2 autosized and the third ...

