WPF controls include UserControls, which are composite collections of other controls, and CustomControls, which are controls built with WPF styles and templates.

learn more… | top users | synonyms

28
votes
4answers
13k views

How to define TextBox input restrictions?

How can I restrict TextBox to accept only capital letters, or for example digits, or forbid to put any special character? Sure it's a piece of cake to catch TextInput event and handle the text here, ...
31
votes
10answers
36k views

How to bind to a PasswordBox in MVVM

I have come across a problem with binding to a PasswordBox. It seems it's a security risk but I am using the MVVM pattern so I wish to bypass this. I found some interesting code here (has anyone used ...
15
votes
2answers
7k views

In WPF, how can I determine whether a control is visible to the user?

I'm displaying a very big tree with a lot of items in it. Each of these items shows information to the user through its associated UserControl control, and this information has to be updated every 250 ...
24
votes
8answers
43k views

RichTextBox (WPF) does not have string property “Text”

I am trying to set/get the text of my RichTextBox, but Text is not among list of its properties when I want to get test.Text... I am using code behind in C# (.net framework 3.5 SP1) RichTextBox test ...
15
votes
6answers
26k views

WPF: How to make canvas auto-resize?

I would like my canvas to automatically resize to the size of its items, so that the ScrollViewer scroll bars have the correct range. Can this be done in XAML? <ScrollViewer ...
16
votes
6answers
72k views

programatically add column & rows to WPF Datagrid

i m new to WPF. I just want to know how should we add columns and rows programatically to a DataGrid in WPF. The way we used to do it in windows forms. create table columns and rows, and bind it to ...
12
votes
4answers
17k views

How to make a Template Window in WPF?

So i am building an application that will have lots of windows, all with the same basic layout: A main Window A logo in the top corner A title block A status displayer down the bottom An area for ...
10
votes
4answers
18k views

Where can I find a free masked TextBox in WPF?

Do you know any freely available WPF component for using masks (regex) in textbox?
6
votes
1answer
9k views

Free WPF Carousel Implementation

I have seen a lot of Carousels to show off WPF. I have never really need one before now though. Is there a decent free one? I have access to the Dev Express one, but I am making an open source ...
7
votes
2answers
5k views

Force rendering of a WPF control in memory

I have the following code: void Test() { currentImage.Source = GetBitmap(); RenderTargetBitmap rtb = new RenderTargetBitmap(100, 100, 96.0, 96.0, PixelFormats.Default); ...
86
votes
1answer
24k views

Difference between Visibility.Collapsed and Visibility.Hidden

What are differences between Visibility.Collapsed and Visibility.Hidden in WPF?
15
votes
2answers
5k views

WPF: Handle editable hierarchical data / TreeView~DataGrid hybrid

I am looking for a WPF control which is a hybrid of TreeView and DataGrid, something like the Visual Studio debugger or QuickBooks contacts list etc. Any other solution on how to handle editable ...
4
votes
1answer
2k views

How to display a different value for dropdown list values/selected item in a WPF ComboBox?

I have a WPF combobox bound to a list of items with long descriptions. The type bound to the ComboBox has both short and long description as properties. Currently, I am binding to the full ...
22
votes
2answers
25k views

AutoComplete TextBox in WPF

Can we make textbox to autocomplete in WPF? I found a sample where a combox box is used and the traingle is removed by editing style template. Do we better solution for autocomplete textbox? ...
17
votes
4answers
12k views

Zoom control to WPF Form

How can I implement a zoom control to my wpf forms similar to the one avaialble in the visual studio designer? thanks!
22
votes
8answers
13k views

What is the Best WPF Ribbon Control Suite? [closed]

I'm going to add a WPF Ribbon UI to my program. What is the best suite of WPF controls including a ribbon control, based on your experiences? Thanks!
15
votes
4answers
27k views

How to bind Close command to a button

The easiest way is to implement ButtonClick event handler and invoke Window.Close() method. But how to do this through a command binding?
11
votes
8answers
27k views

Get the item doubleclick event of listview

How to get the item double click event of listview?
7
votes
4answers
2k views

Improving WPF Canvas performance

I am developing a Maps like application using WPF. I have ~10,000 PathGeometry, Shapes added to the canvas. I have added ScaleTransform and TranslateTransform for zooming and panning controls. The ...
6
votes
1answer
3k views

How do I host WPF content in MFC Applications?

I'm going to answer my own question here because I spent a few hours piecing this together and wanted to share what I found in the hope that I will save someone else the digging. There is an MSDN ...
4
votes
2answers
5k views

WPF Screenshot JPG from UIElement with C#

I'm trying to create a JPG from part of my WPF Applications. Like a screenshot, only of individual UI Elements. I started here: http://www.grumpydev.com/2009/01/03/taking-wpf-screenshots/ I am ...
6
votes
1answer
5k views

Overriding button background in WPF on Aero

So, the desire is simple, change a button's background to LightGreen, Green when the mouse cursor hovers over it and DarkGreen when it is pressed. The following XAML is my first attempt: <Window ...
6
votes
5answers
3k views

Stopping WPF TextBox from growing with text

I am trying to modify my simple control so that the text box does not grow as the user types in long text. I took a look at some solutions posted here at Stackoverflow that suggest using a Grid and ...
7
votes
2answers
7k views

wpf datagrid alternate row coloring

I have tried this method.. without luck.. <Style TargetType="{x:Type DataGridRow}"> <Style.Triggers> <Trigger Property="ItemsControl.AlternationIndex" Value="0"> ...
3
votes
1answer
2k views

How do I change WPF Menu's icon column size?

I have a WPF ContextMenu that looks like this: <ContextMenu Width="300"> <MenuItem Command="{Binding MainWindowViewModel.NewCommand}"> <MenuItem.Icon> ...
2
votes
2answers
3k views

Stop highlighting selected item WPF ComboBox

I'm currently working on a WPF UI and I have a combobox on my window. So I want the user to be able to select an item from this combobox but when it is selected I don't want it to be highlighted in ...
0
votes
2answers
3k views

WPF ComboBox SelectedItem not Updating

I am facing a problem while working with a WPF ComboBox. My situation is that I have a ComboBox that is displaying some values. I am adding ContentControls to ComboBox' Items property. I have bound ...
3
votes
2answers
2k views

unselect row in wpf datagrid

I have <DataGrid Name="grid" MouseDoubleClick="Attributes_MouseDoubleClick" > I need to unselect a row whenever a click event occurs anywhere else other than the Datagrid row. i.e. ...
1
vote
2answers
3k views

Using BackgroundWorker with ProgressBar in WPF

Hi i have an App where one of the jobs will be convert an Excel and pass all the records to the DB. So this takes a little time because it's more than 7000 rows that i will get and insert into the ...
14
votes
3answers
7k views

WPF MVVM Modal Overlay Dialog only over a View (not Window)

I'm pretty much new to the MVVM architecture design... I was struggling lately to find a suitable control already written for such a purpose but had no luck, so I reused parts of XAML from another ...
24
votes
3answers
21k views

Align items in a stack panel?

I was wondering if I can have 2 controls in a horizontal-oriented StackPanel so that the right item should be docked to the right side of the StackPanel. I tried the following but it didn't work: ...
18
votes
2answers
14k views

How do I create a dashed border with rounded corners in WPF?

The Rectangle element has StrokeDashArray which allows it to be drawn with dashes, but it doesn't support rounded corners. The Border control supports nice thick lines with rounded corners, but will ...
14
votes
5answers
9k views

Any WPF Gauge Controls that are open source? [closed]

I need to find an open source WPF Gauge Control that I can use in my Rich Client (not for silverlight). Does anyone have any recommendations on one that is open source? I need to build a WPF ...
7
votes
1answer
1k views

Any WPF Panel Layout Code that emulates the Windows 8 Start Menu Tile Layout Engine, AKA WinRT's GridView Control?

So anyone out there knows of sample code or control that perfectly emulates the Windows 8 Start Menu Tile Layout Engine? It should support mixed Square and Rectangle Tiles, and repacks the square ...
11
votes
4answers
11k views

How to implement Balloon message in a WPF application

We would like to use balloon messages as described in the UX Guide from Microsoft. I found some samples which uses native code from Windows Forms, but the native code requires a handle to the ...
6
votes
3answers
2k views

Length of string that will fit in a specific width

I'm sure I'm missing something obvious, I have an area in which I intend to draw text. I know its (the area) height and width. I wish to know how many characters/Words will fit in the width, ...
5
votes
3answers
3k views

Visible line count of a TextBlock

If you set TextWrapping to "Wrap", a WPF TextBlock can have several lines of text. Is there a "clean" way to get the number of lines of text? I considered looking at the desired height and dividing it ...
5
votes
4answers
26k views

Force a custom WPF Control to resize correctly

I have written a WPF user control and part of it involves dynamically adding elements to a canvas which effects the height of said canvas. The canvas is nested within a grid. When I dynamically add my ...
1
vote
2answers
8k views

How do I make an ellipse blink?

I am trying to make a custom control in WPF. I want it to simulate the behavior of a LED that can blink. There are three states to the control: On, Off, and Blinking. I know how to set On and Off ...
7
votes
3answers
6k views

Get the minimize box click of a WPF window

How to get the minimize box click event of a WPF window?
5
votes
2answers
2k views

Where can I get themes for WPF controls that resemble the Visual Studio 2010 interface?

My application is build around AvalonDock, which has quite good Visual Studio 2010 skin (which is much prettier than all the other skins). Now I would like to style the rest of my application to go ...
4
votes
3answers
455 views

Datagrid selectedItem and databinding

I have two datagrid displayed on my UI. When I select a particular row on datagrid 1, I would like to display the details of the datagrid 1 on datagrid 2. I am populating the datagrid data from a ...
4
votes
3answers
1k views

How to track which character is deleted in TextBox in WPF?

I want to track which character is deleted by the user through Delete or BackSpace Key. I am handling TextBox_ChangedEvent of textbox. Can I extract the deleted character from TextChangedEventArgs ...
1
vote
2answers
752 views

Image Button only responds when clicking on the image and not the area around inside the button

I'm using the following button style which takes away the borders and makes a transparent background to make my image buttons: <Style x:Key="EmptyButtonStyle" TargetType="{x:Type Button}"> ...
9
votes
4answers
4k views

Set superscript and subscript in formatted text in wpf

How can i set some text as subscript/superscript in FormattedText in wpf
8
votes
4answers
6k views

WPF textbox textChanged event on programmatic versus user change of text contents

I would like to differentiate between changing the text programmatically (for example in a button click handler event) and user input (typing, cutting and pasting text). Is it possible?
7
votes
5answers
9k views

XNA and GUI controls (eg. xaml and xna)

Is there a way to get textboxes, labels and other wpf controls in xna that supports margins, etc that flexes for window size?
6
votes
3answers
1k views

WPF: On Mouse hover on a particular control, increase its size and overlap on the other controls

I wish to increase the size of a control whenever the user hovers the mouse. The size increase should not readjust the other controls, rather the current control should overlap the neighboring ...
4
votes
2answers
1k views

Irregular PNG button's click event in WPF

I need an irregularly shaped button in WPF. I am doing it in this way using XAML: <Button Name="toggleButton" Click="toggleButton_Click" Canvas.Left="177" Canvas.Top="0"> ...
4
votes
1answer
2k views

Capture coloured console output into WPF application

Similar to this question, except the console program being wrapped up in the WPF application produces coloured output, so it would be nice if I could capture the colour as well as the text. This is ...

1 2 3 4 5 7