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

2
votes
0answers
33 views

Table column width and horizontal alignment

I searched all over the internet and cannot find a simple solution to stretch table columns to the content width, and how to centralize table in the middle of the screen. It is always aligned to the ...
2
votes
0answers
64 views

Interactive dynamical wpf grid

I have a collection which I want to place on a grid. The collections items have properties that refer to where on the gird the item should be placed, and how many columns and rows the item should ...
2
votes
0answers
41 views

How does touch / gesture support in WPF compare with Windows Store API

I have been looking but have been unable to find as yet a nice comparison of the differences in touch / gesture support between the Windows Store app API's and WPF. I have seen that WPF includes some ...
2
votes
0answers
202 views

Extending the LineSeries in the WPF Toolkit charting to provide data tags

I copied an implementation that I found which provides data tags on a line chart from the WPF Toolkit DataVisualization and changed it around a little. It displays the value of a plot next to the data ...
2
votes
0answers
52 views

Communication between VS extension and user controls in design mode

I'm writing a Visual Studio extension along with a WPF user control library that will be included in the VSIX package. I have an interesting requirement that involves providing data to my user ...
2
votes
0answers
115 views

“Binning” items in an ObservableCollection into separate ListBoxes

I've recently encountered a rather severe performance issue with how I'm "binning" items in my ObservableCollection into individual ListBoxes. This works in its current iteration and my issue arises ...
2
votes
0answers
86 views

Where does VS2010 get default property values when you drag and drop a control in the WPF designer

Visual Studio 2010 creates default property values when you drag and drop a control in the WPF designer. <UserControl x:Class="TestPanel.UserControl1" <Grid> <Button ...
2
votes
0answers
399 views

Tooltip on scrollviewer in documentviewer in case of deferred scrolling

I want to show the tooltip on my scrollviewer on page scrolling which shows the current page number in it which i asked here- Tooltip on scrollviewer in documentviewer. I have implemented the answer ...
2
votes
0answers
437 views

Custom ViewBase Implementation For ListView

Does anyone have any experience, thoughts or example code about implementing a custom ViewBase as used in ListView.View ? To date, the only control in the framework that inherits from 'ViewBase' is ...
1
vote
0answers
39 views

How to prevent a WPF custom control created with control template from drawing focus around itself?

I'm developing a custom control deriving from Control and defined using ControlTemplate. After stripping out all bells and whistles, the control displays just four TextBoxes: <Style ...
1
vote
0answers
88 views

2012 Visual Studio Custom Control Xaml/Style Designer - How to edit generic xaml styles?

I have been digging around online and in stack overflow, but maybe I am not asking the question correctly. I am attempting edit my generic/default custom usercontrol style without opening up Blend. ...
1
vote
0answers
180 views

DataTemplateSelector and update binding manually

I am using a DataTemplateSelector to swap input method for user based on whether he wants to enter text or pick a date value. Which means the selector switches between a TextBox and a DatePicker. Each ...
1
vote
0answers
20 views

Margin around FixedDocument in DocumentViewer

I am displaying a FixedDocument in a DocumentViewer, and by default the ScrollViewer shows the document with no margin above the top or below the bottom of the document. What I'd like is to change ...
1
vote
0answers
54 views

how to bind different xml files to data grid in wpf?

we have 40 xml files.we want to bind to data grid dynamicliy. 40 xml files by diffrent structer for example a xml file : <a> <at1="val1" at2="val2" > <at1="val4" at2="val5" > ...
1
vote
0answers
31 views

Want to provide Resize for my Usercontrol. Can somebody please tell me if i have to provide some additional tags in the Usercontrol?

This is my code. I have Used a UserControl and i have used a grid to hold all the UI/UC. this form is not resizable. I want to provide resizable options to the user apart from maximize options. I ...
1
vote
0answers
22 views

GetPositionAtOffset equivalent for text only?

Is there a pretty solution of a GetPositionAtOffset() equivalent which only counts text insertion positions instead of all symbols? Motivation example in C#: TextRange GetRange(RichTextBox rtb, ...
1
vote
0answers
64 views

Text not display proper in wrap panel

<WrapPanel Margin="20,5,10,0" Orientation="Horizontal"> <ItemsControl ItemTemplate="{StaticResource EvenNotesItemsTemplate}" AlternationCount="2" ItemsSource="{Binding}" /> ...
1
vote
0answers
43 views

How to change theme of radio button to Aero theme in my application

I have radio buttons in my application.I want these radio buttons to have aero theme.So how to implement Aero theme to these radio buttons in WPF. If I change the Resource Dictionary to Aero theme ...
1
vote
0answers
203 views

Customizing the ScrollViewer in WPF

I am developing an application which has the customized ComboBox. The look and feel of the ComboBox should like this. I have modified the ComboBox's ControlTemplate to look as above. The problem ...
1
vote
0answers
128 views

Wpf Application crashes without exception

I have an xaml file that contains two tab items. At first it opens fine and when I switch tabs the application crashes with no exception. The problem is not in the second tab because if I switch the ...
1
vote
0answers
79 views

WPF best way for changing layout dynamically

i'm starting to build a C# WPF application, and i want to have a control with multiple "screens" (actually - another UserControls), but i want to let the user choose between several layout presets. ...
1
vote
0answers
149 views

WPF Rectangle vs Border: Which is better for performance?

There are times when either a Border control or a Rectangle control will fulfill a need I have. An example would be when I'm implementing a ControlTemplate and I'm already applying a layering ...
1
vote
0answers
101 views

Stay on the same textbox control inside a listbox whilst using keyboard navigation

I'm very new to WPF so go easy I have a bound list box which is bounce to a datasource. I have created a data template for the items in the list box and some of the columns of data need to be ...
1
vote
0answers
55 views

WPF Resizing DataGrid with content

So all the questions I've seen so far are about resizing the columns to the content, but I want to resize the whole control - the datagrid itself - and change the width (and height) to be that of the ...
1
vote
0answers
67 views

Binding Row to Validation Rule WPF

I want to bind TextBox's Tag (which is inside a DataGrid), to validation rule's CurrentLegStrategy property (which is a DependencyProperty). Although I've done something similar with Deal dependency ...
1
vote
0answers
33 views

how can to save a the elemnte xml to wpf?

we have xml colom: <Department Name='D1' TotalCapacity='5'> <Class Name='c1' Capacity='3'></Class> <Class Name='c2' Capacity='2'></Class> </Department> ...
1
vote
0answers
112 views

mousedown and mouseup events stop firing when I update the UI in a Dispatcher.Invoke call

Okay, so I have an image element in my xaml inside a usercontrol <Image HorizontalAlignment="Left" Margin="0,0,0,0" Name="imagePiece" Stretch="Fill" VerticalAlignment="Top" Source="{Binding ...
1
vote
0answers
33 views

How give a resource address to video in WPF form?

I'm beginner in WPF programing and have a simple problem in that! I use this code to display a movie in WPF form. <MediaElement x:Name="meShowClip" Source="" FlowDirection="LeftToRight" ...
1
vote
0answers
117 views

BindingList<object> doesn't work for me

I have a class that interacts with a tableView. I have multiple pages in my program that uses this class/control. Problem was I was using List<> in this class to assign it to the itemsource. ...
1
vote
0answers
334 views

implement wpf gridview as same in the Metro style gridview

For my WPF application i'm trying to get windows 8 metro Gridview style in WPF. Here is my sample code of metro style Gridview design: <DataTemplate x:Key="DashboardItemTemplate"> <Grid ...
1
vote
0answers
76 views

How to handle connection status changed in WPF?

In my WPF application I am having a user control in main window and a Frame(Navigation frame) and my first page is menu page and I will navigate from menu page to other page using navigation service ...
1
vote
0answers
62 views

How to decorate VirtualizingStackPanel

Is there a simple way to decorate VirtualizingStackPanel? If I put VirtualizingStackPanel directly in ScrollViewer, virtualization will work. My goal is to override the Decorator.OnRender() method and ...
1
vote
0answers
78 views

How to keep the busy indicator working during data binding?

While fetching data or running some other long task on a separate thread the busy indicator is spinning fine but once the long running task is complete and the data binding to a collection used by the ...
1
vote
0answers
50 views

DataGrid with internal margins in a style has wrong initial size, sorts itself out on resizing the window

I have a DataGrid containing a number of DataGridTemplateColumns. One of these has Width="*" and the rest have Width="Auto". Most just contain a TextBox. I want a margin on each side of each element, ...
1
vote
0answers
179 views

Set value in DatePicker Control Template MaskedTextbox in WPF

I'm a newbie to WPF not fully aware of the dependency property & stuff, I want to set the value of Datepicker to MaskedTextBox. Or is there way to mask the Datepicker textbox without using ...
1
vote
0answers
24 views

Apply format to column in listView depending on Name Column

I'm actually developing a WPF Desktop Application on Visual Basic and my problem is that I've been trying to set some format to some columns into a listView without success, so I was wondering if ...
1
vote
0answers
180 views

how to select table cell in mshtml.HTMLDocument for c# WPF WebBrowser Control?

i would doing select in WPF Web Browser Control in mshtml.HTMLDocument. but, i am in agony something to event. if user onclicked by Table, i would know selection cell. how to know select cell in ...
1
vote
0answers
33 views

Window Property Not Getting in Page Level

<Grid> <Button Content="{Binding Title, RelativeSource={RelativeSource AncestorType={x:Type Window}}}" HorizontalAlignment="Left" Height="50" Width="100"/> <Frame> ...
1
vote
0answers
113 views

CustomControl Property unable to set via dependency property

I have created custom control which contains combo box to display colors and one dependency property SelectedIndex. I have used this control in mainwimdow.xaml page and tried to set selected index ...
1
vote
0answers
27 views

when resource is not found in XAML

OK, I'm reading an article posted on CodeProject by Josh Smith and of course as going through it by adding XAML, resources, and etc. Again I see what I sometimes see in VS! I have added "Resource" ...
1
vote
0answers
97 views

Combox's Textbox accepts value of selectedValuepath after tab or leaving comboBox it diplay seletedValue in combox's textBox

I want in application that my combobox accepts selectedvaluepath property's value and after tabbing or leaving from combobox it displays selectedValue in combobox's textbox. And also it accepts ...
1
vote
0answers
270 views

How to highlight text using string indexes in WPF RichTextBox?

I'm working on a custom RichTextBox which highlights certain words typed in it. (more like highlight certain strings, because I intent to highlight strings that are not separated by spaces) I search ...
1
vote
0answers
119 views

How to navigate to the .pdf file by using wpf datagrid hyperlink?

I have a WPF datagrid which has a hyperlink column. The hyperlinks are of PDF documents which I have on system(not in a specific folder). How do i write a code to navigate to the document? When I ...
1
vote
0answers
115 views

Add control to main UI container

I have few expanders in one XAML. There is another main UI application which contains StackPanel. LocalControl.XAML <UserControl> <Expander Name="ExpA"> <StackPanel> ...
1
vote
0answers
225 views

Force validation rules for controls bound on unselected tabItems in WPF

In my canonical example, I have two tabs the first with a button and the second with a text box that is bound to a validation rule. When the button is clicked an action occurs that should cause the ...
1
vote
0answers
43 views

What control should be appropiate to show a Canvas?

I can't find a better title for this. I have many canvas drawings and depending of a parameter in my program, should display the respective canvas EX: - PARAMETER: 1 OUTPUT: CANVAS1 - PARAMETER: 2 ...
1
vote
0answers
169 views

Data annotations ErrorMessage error ( using WPF and Entity Framework )

I'm trying to apply data annotations in my project. I'm using WPF and Entity Framework in my project but when I write for instance [Required(ErrorMessage="This field is required!")] public string ...
1
vote
0answers
161 views

Animation for SizeToContent resizing

In WPF window, I have specified SizeToContent="WidthAndHeight". I have a number of panels stacked up, of which I change the visibility (to Visible or Collapsed) as required. My window resizes itself ...
1
vote
0answers
133 views

HierarchicalDataTemplate is not applied while binding to collection consisted of ContentControls

I`m binding a treeview to a collection wich items are of type ContentControl. My hierarchical data template (and also styles) are not applied to the items. <TreeView Name="tvCategories" ...
1
vote
0answers
155 views

WPF LISTBOX collapsible

THere are few items in My Listbox , items are completed, Active and pending ( depends on my internal logic) , i want to hide completed and Pending items , on press of listbox/button the pending or ...

1 2 3 4 5 16