Tagged Questions
0
votes
3answers
32 views
Aligning values by decimal point
I have a DataGridTemplate which is bound to a double value "AverageWeight". This field doesn't have to have any decimal places but can have a maximum of 5 decimal places.
public double AverageWeight
...
0
votes
1answer
29 views
WPF Equivalent to Flex VGroup
What is WPF equivalent to Flex VGroup?
My Intent is to have a vertical list of checkboxes
Flex declaration would look like this
<s:VGroup>
<s:CheckBox label="Item 1" />
<s:CheckBox ...
0
votes
1answer
57 views
How do you get a WPF TextBox to overflow to the left and stay that way without messing up your arrow key behavior?
I have a text box that is only 10 characters wide. I need to put 20 characters in it, but only need to show the last 10 characters. I need to force the TextBox to always overflow the text to the ...
0
votes
1answer
37 views
Horizontal Alignment ListViewItem
I need to put my listviewitems Horizontally, but I can't find the way, so far I tried this:
<ListView Grid.Row="0" ItemsSource="{Binding Path=Cells, UpdateSourceTrigger=PropertyChanged}"
...
0
votes
0answers
86 views
WPF setting custom value to be used for baseline alignment
I'm developing a simple equation editor using WPF. Basically, I have a RichTextBox in which I add InlineUIContainers that contain controls representing matematical expressions.
The problem is that I ...
0
votes
1answer
65 views
ListBox in WPF page looks fine on my PC, but the data shrinks on smaller resolutions
I've tried almost every combination of alignments and margins, to no success. The ListBox is on a WPF page, which is bound to a frame on the main window.
The ListBox itself is fine. It aligns just as ...
0
votes
1answer
50 views
WPF Not displaying what is seen on screen when compiled
I'm new to WPF and am used to winforms. I don't understand why the compiled output is not the same as in the design view. I find this to be bit annoying and misleading.
When adding elements, I ...
0
votes
1answer
70 views
WPF:The coordinate of image is retrieved incorrectly when alignment is center
I settle an image control on grid in WPF :
<Window x:Class="Window.PhotoViewer"
Title="PhotoViewer" Height="768" Width="1024" BorderThickness="0,0,0,0">
<Grid Name="ViewerGrid">
...
4
votes
2answers
281 views
WPF datagrid row horizontal alignment issue
I'm using a DataGrid in a form to show a list of (userID, name, balances, etc.). There is a very strange issue with it, at the beginning of some rows (one out of very twenty rows) there is a small ...
2
votes
2answers
403 views
Why won't the WPF progressbar stretch to fit?
This is my original code:
<StackPanel Grid.Row="3" Grid.Column="0" Grid.ColumnSpan="2" Orientation="Horizontal">
<ProgressBar Height="23" Name="searchProgressBar" Foreground="Blue" ...
1
vote
2answers
387 views
Stretch WPF grid horizontally inside RibbonGroup
How do I stretch a WPF Grid horizontally inside a RibbonGroup? It's not stretching despite the HorizontalAlignment property.
<Window x:Name="FrmMain" x:Class="PhotoCell.MainWindow"
...
0
votes
0answers
179 views
WPF Grid Column not aligning image correctly
The final column of the below grid view is not displaying in the center vertically, though the first image is and they use the same lookup method to find the image source (A resource dictionary object ...
1
vote
3answers
172 views
TextBox with HorizontalAlignment set to both Stretch AND Left
Note: I read over this question and its answers: WPF: HorizontalAlignment=Stretch, MaxWidth, and Left aligned at the same time?. None of them do what I am looking for.
I have the following xaml:
...
2
votes
1answer
197 views
Center single column in ListView holding an image
I have a Listview that has three columns. The last columns holds an image that only gets displayed if the data the column bind to is true.
<ListView HorizontalAlignment="Stretch" Margin="5" ...
0
votes
0answers
107 views
Change window title alignment
How to change .NET WPF Application window title to be centre aligned throughout the application?
0
votes
0answers
82 views
MenuItem With No Sub Items Alignment Issue
I am encountering an alignment issue when the Menu Item has no sub menu items. The menu item without sub items is not being aligned properly with the rest of the menu items. As shown in the below ...
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
369 views
WPF: HorizontalAlignment=Stretch, MaxWidth, and Right aligned at the same time?
More or less the same question like here, but right align: WPF: HorizontalAlignment=Stretch, MaxWidth, and Left aligned at the same time?
How do I get this blue text box to grow with the size of the ...
0
votes
0answers
127 views
Popup does not align intact with parent control on scrolling
I have a popup, which will get displayed when KeyBoardFocus is on a TextBox. I have used PlacementTarget to place the Popup just below the TextBox. Here is Code:
<Popup x:Name="popup" ...
1
vote
0answers
86 views
WPF parent of submenus not aligning correctly in WinXP
When I make MenuItem in WPF that has a list of MenuItems nested inside it throws the alignment off of the parent. But this is only in Windows XP, everything works fine in Windows 7. I think it is ...
1
vote
1answer
384 views
How to right-align content in a DataTemplate?
I have a List with a DataTemplate that shows the text and a "x" button next to it. I want the "X" btn to be shown at the extreme right, so they all appear in same place. The XML I use is :
...
0
votes
1answer
266 views
Multiline WPF textblock: different alignment for lines
Is that possible to set different horizontal alignment for different lines of multiline textblock?
For example, I want to center header of my text, but main text I want to align by left side. I'd not ...
0
votes
1answer
2k views
Grid Column Width - mix *(star), Auto and fill left space
I have a Grid width following Column Definitions:
<Grid.ColumnDefinitions>
<ColumnDefinition MinWidth="320" MaxWidth="450" Width=".32*"/>
<ColumnDefinition ...
1
vote
1answer
842 views
WPF Groupbox Control Header with Button and text aligned Opposite
I want to achieve such an interface using WPF groupbox control
Is there a way to achieve such an interface with WPF groupbox control?
1
vote
3answers
107 views
How to align two elements at each ends in WPF?
I need to show two labels "hello" and "world", one at leftmost, and the other at right most.
How can I do that?
I tried this, but it doesn't work.
<Grid>
<StackPanel ...
1
vote
1answer
561 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 ...
2
votes
2answers
3k views
How to right align text in a DataGrid column header in xaml?
I have a WPF DataGrid with a column header as follows:
<DataGridTemplateColumn Header="Length" Width="100">
...
</DataGridTemplateColumn>
How do I make this header align right? ...
1
vote
1answer
740 views
BringIntoView Method
In WPF, I have a scrollviewer with 7 different groupboxes in it. Each groupbox is it's own individual section for different forms. Because the scrollviewer is so long, I've placed a series of ...
1
vote
1answer
73 views
Alignment on dynamically created items
Hi,
Based on the image above, I would like to align the words "Action", "Adventure", "Arcade" to left most and align it to appear same height as the blue right arrow
my code for this is created ...
1
vote
1answer
157 views
c# animate the Alignment - possible?
is it possible to create a c# animation for the AttachedPropertys like Alignment? Maybe 1 Second Move between the Change from HorizontalAlignment.Left to HorizontalAlignment.Right - is it possible?
...
6
votes
3answers
5k views
How can I align a CheckBox with its content?
The look of a WPF CheckBox misaligns the check portion with the label (content) portion. The check stays slightly above the content as shown here:
The XAML looks like this:
<CheckBox ...
1
vote
1answer
423 views
WPF Textbox FlowDirection + HorizontalContentAlignment issue
I have a Control template targeting the ComboBox (TargetType="{x:Type ComboBox}")
In this template is a TextBox:
<TextBox x:Name="PART_EditableTextBox"
...
0
votes
0answers
117 views
WPF ComboBox has no baseline snaplines
The WPF ComboBox Control does not seem to have any text baseline snaplines, how can i align it to the baseline of a Label control?
The MSDN says it has snaplines, but when i drag the control around ...
1
vote
1answer
883 views
WPF DataGrid: The selected row is not properly highlighted when using HorizontalAlignment
I have a DataGrid where one column needs to be aligned to the right. To do this I use
<DataGridTextColumn.CellStyle>
<Style>
<Setter ...
0
votes
2answers
554 views
WPF Alignment not working
I use the following code in my WPF app, for a groupbox:
<GroupBox Style="{StaticResource groupBoxStyle}" Header="RB" Margin="0,6,268,249" Name="groupBoxRB" HorizontalAlignment="Right" ...
1
vote
1answer
316 views
Is there another way to set the DataGrid column alignment?
Is there any direct way to set the DataGrid column content alignment other than the use of styles or templated columns?! there must be a direct way for that, its a natrual requirement!!
1
vote
1answer
1k views
WPF TreeView with right alignment values
I have a problem with my wpf treeview. It's code goes like this:
<TreeView ItemsSource="{Binding Path=Items}" Grid.RowSpan="2" Grid.ColumnSpan="2">
<TreeView.Resources>
...
1
vote
2answers
2k views
margin text in TextBlock
Is it possible margin Text in TexBlock control ?
My style on textBlock control is here :
<Style x:Key="InfosStyle" TargetType="{x:Type TextBlock}">
<Setter ...
3
votes
3answers
293 views
Considering HorizontalAlignment and VerticalAlignment while creating a custom panel
I am trying to create a custom panel in wpf. Here the doubts I have,
How do I consider the
HorizontalAlignment and
VerticalAlignment factors while
placing the items within my panel.
Should I ...
1
vote
1answer
760 views
SharedSizeGroup in menuItem template
I have to apply a specific design to my application's menus.
So I took Microsoft's template example as a basis to build on:
http://msdn.microsoft.com/en-gb/library/ms747082.aspx
so what I did is I ...
1
vote
1answer
533 views
WPF Printing FlowDocument not centering
I want to print a page from some text I have with a small header.
I wanted all the text to be centered on the page but I'm not sure how to do it..
Here is my code.. t is of type track which is ...
0
votes
1answer
608 views
WPF Alignment problems
I have this window:
My problem is that when the number is larger than 2 digits, it pushes the red rectangle to
the right. and I would like it to act like that:
The rectangle must not been pushed ...
1
vote
1answer
305 views
WPF Flowdocument - can't left-align ListItem markers
I've got a WPF FlowDocument with a list of MarkerType 'Upper Latin'. It's looking like this:
Notice that the list item alignment is on the periods after the marker, but since the text is variable ...
1
vote
3answers
456 views
WPF. Layout issue
guys
I have StackPanel. I need place there TextBlock with TextAlignment = TextAlignment.Center[Center of stackPanel] and button at right side with small margin.
How can I achieve such layout with wpf.
...
0
votes
1answer
639 views
Setting alignment property by reflection with a string value
I'd like to set align property (horizontal/vertical) of an object through reflection, with a value of type string. I use something like
private void SetPropertiesFromString(object nav, string ...
1
vote
1answer
205 views
WPF/Silverlight Tree - How do I make all nodes from a tree to be aligned?
What do I have to do with a Tree in WPF/Silverlight, to have all nodes aligned ar the same level?
I mean I need the root and all childs to be align at the same distance from the left side of the ...
2
votes
3answers
4k views
WPF How to center the Image.Source
I am developing a custom Image control in WPF .NET 3.5 and Visual Studio 2010.
In WinForms the PicutreBox control has the SizeMode property which includes "CenterImage".
I want my Image control to ...
7
votes
3answers
3k views
WPF: Aligning the base line of a Label and its TextBox
Let's say I have a simple TextBox next to a Label:
<StackPanel>
<StackPanel Orientation="Horizontal">
<Label Margin="3">MyLabel</Label>
<TextBox ...
6
votes
2answers
4k views
WPF CheckBox style with the TextWrapping
I need to apply a TextWrapping in the WPF CheckBox.
Please look at this two samples:
<CheckBox>
<TextBlock TextWrapping="Wrap"
Text="_This is a long piece of text ...
0
votes
2answers
1k views
Text orientation
I know you can do this to get vertical text in a tab header:
<Window x:Class="Abodemploy.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...


