Windows Presentation Foundation, or WPF, is a subsystem for rendering user interfaces in Windows-based applications.

learn more… | top users | synonyms

0
votes
0answers
14 views

Default styles do not apply to subclasses

I have a weird scenario involving overriding default styles in WPF and having them apply to subclasses. Is this not possible? For example, I have the following code: <Window ...
0
votes
1answer
10 views

Creating BitmapImage throws missing key exception

I have a view that displays an image with it's title and comment alongside it. When I load up existing images I utilize this code: this.ArtifactIdentity = image.ArtifactIdentity; ...
0
votes
1answer
40 views

Xaml Parse Exception WPF

I have encountered a problem with my Whack a Mole Game: XamlParseException was unhandled 'The invocation of the constructor on type 'WhackaMoleReal.MainWindow' that matches the specified ...
0
votes
2answers
19 views

WPF Treeview with multiple levels using HierarchialdataTemplate

Here is my code for creating a Treeview that has multiple levels with checkbox to be shown. I am not able to show the Files under the folders with the following code. What is wrong with my Xaml that ...
0
votes
0answers
26 views

Memory leak in DataGrid - observable collection

I'm noticing a lot of memory not getting released when I dispose of my WPF DataGrid. I've been using .NET Memory Profiler and dotTrace to clean up all the references still holding onto the DataGrid, ...
0
votes
0answers
22 views

WebBrowser is asking for credentials on every page

I'm using web browser control and this is constructor of the form which hosts web browser control: string user = "xxx"; string pass = "xxx"; string authHdr = "Authorization: Basic " + ...
0
votes
2answers
39 views

How to create a hovered toolbar

How to create a hovered toolbar? Clicking to expand the ToolBar will not shrink the Canvas. Expander works for expanding, but the canvas will get shrinked. <UserControl ...
0
votes
0answers
24 views

How to wait while parent window is not closing

I have the following code: Parent Window: SendingWindow sendingWindow = new SendingWindow(filename, txtDescription.Text, size, 5); sendingWindow.Show(); Close(); Child Window: ...
0
votes
0answers
9 views

Redirect Key input from a Control to a Form

I have a Windows Form - MyForm. In MyForm I have a WPF Control (MyWpfControl). That control, when focused (selected) inhibits the keys of MyForm. That means, I capture KeyDown only in the Wpf ...
0
votes
1answer
12 views

WPF Append colored text to RichTextBox

I have a System.Windows.Controls.RichTextBox, and I'm trying to implement this function: public void AppendText(String text, Brush color) { } I want the appended text to be on the same line as the ...
-2
votes
2answers
75 views

How Do I Sum Items in the List box?

I have Two Listboxes, Source and Destination. The destination List box has Items selected by the user. How do I Sum Items in a destination List box. The Destination List box has two data types String ...
0
votes
1answer
19 views

WPF override a text on canvas + zooming dont work well

Problem 1: How can I override a written text without delete the whole canvas content ? Can I do that over C# ? Without adding elements in the XAML code ? Problem 2: I intergrated a zoom function but ...
1
vote
0answers
29 views

Path from Resources as Content of Button

I would like to set Button's Content to Path defined in Resources. So I created UserControl, defined Path, two Brushes and button Style in resources... and everything was ok. <UserControl ...> ...
0
votes
0answers
15 views

WPF UserControl and Winforms KeyPress

I have a WPF UserControl. That control is embedded in a WinForm via a ElementHost, that is located in a TabControl. Normally, in a TabControl when I press Ctrl+Tab it changes the tab. But I observed ...
0
votes
2answers
30 views

wpf combobox binding is empty

I am trying to work out wpf with some difficulties. This ComboBox seems a very basic issue but I can't have it populated even after reading all possible similar post. The extra difficulty I think is ...
0
votes
4answers
32 views

wpf binding to static resource

So I have aproblem with binding in WPF. I am trying to bind a DataGrid ComboBoxColumn with a static resource but with no luck. I know where the problem is but I'm not sure how to fix it. in XAML i ...
0
votes
0answers
15 views

Adding a new row to a WPF datagrid that is bound to an Xml file via XmlDataProvider

I have a WPF datagrid that is bound to an xml file via an XmlDataProvider and I'm trying to make it two way editable but I can't seem to create a new item. XmlDataProvider <Window.Resources> ...
0
votes
0answers
12 views

WPF alternative to SetStyle(ControlStyles.Opaque)

I am rendering images from a web cam to the screen. In windows forms I call SetStyle(ControlStyles.Opaque) to avoid from flickering. What it does is (from MSDN): If true, the control is drawn opaque ...
3
votes
1answer
27 views

ALT-TAB always activates main window in WPF app with multiple owned windows

On Windows 7, .NET 4.0 I have a problem that can be reproduced by copying the following code into a blank WPF application generated by Visual Studio: public MainWindow() { ...
0
votes
1answer
18 views

WPF Howto create a reusable composite component with configurable content?

I would like to create a component that is made up of an arbitrary control and a little button beside this control (same as in this example: http://putridparrot.com/blog/wpf-composite-control/). My ...
0
votes
1answer
9 views

WPF Combobox binding to DataTable not working

ComboBox is defined as <ComboBox Name="cmbCallSource" /> At form load I run this code (I checked that dtSources datatable ends up with proper contents in debugger): //Init Source List ...
0
votes
0answers
27 views

Validate a data template column combobox in wpf c# visual studios

So like the title says really I just want a way to validate a combobox, so if it's empty it throws an error, or if there is a value in it that is not recognized (my combobox has property Editable set ...
0
votes
1answer
28 views

Get the Parent List in a TreeView

my Problem is the following: i have a treeView, which is bounded to the ItemsSource. The SelectedItem is bound to a property in my ViewModel called SelectedItem. The ItemsSource is build like: ...
0
votes
0answers
47 views

WPF Image to string and string to image

I have a data driven application and one of the entities is supposed to have an image attached to it. Now, since I'm putting the images in a sub-folder of my project directory I don't need to ...
0
votes
1answer
38 views

Want to run WPF application on Asp.net web application.

I want to run my WPF application on asp.net web application. Actually I have a WPF page.xaml which contain the image viewer, which actually open image and edit it as required. Now I want to embed that ...
0
votes
0answers
14 views

When PropertyChanged called event PropertyChanged=null

I have a class derived from INotifyPropertyChanged to track property changes. This properties are bound to a TreeView and are needed to perform searching in TreeViewItems. When in properties setters ...
1
vote
1answer
26 views

Difference between KeyEventArgs.systemKey and KeyEventArgs.Key

Whats the difference between KeyEventArgs.systemKey and KeyEventArgs.Key? Is it fine to trap key press event in WPF Usercontrol class as shown below. protected override void ...
1
vote
2answers
28 views

how to show the following output in wpf datagrid depending on a condition

I am displaying the Processing Time data in a datagrid as follows using the following statement var duration_query = this.db.Events .Where(p => ...
0
votes
1answer
26 views

Textbox focus does not work when focus by mouseclick wpf

When I click on text box by mouse then focus does not display. and when I goes to textbox by keyboard then focus displayed. I am trying below code. So please can any one suggest me how I solve this ...
2
votes
1answer
36 views

WPF Control Templating - How do I create a custom property?

I'm currently building a XAML UserControl library using Blend. I've created a template for my custom WPF slider type. What I'd like to be able to do now is add a custom brush property for the control ...
0
votes
2answers
29 views

why this style is not working in wpf

I have a style for button as follow: <Style TargetType="Button" x:Key="BlackButton"> <Setter Property="Background" Value="Black"/> <Setter Property="Template"> ...
0
votes
1answer
27 views

Restarting a Thread after returning to a Window in wpf

I'm currently building a point and click game in WPF, when I exit a room it changes windows at the moment, the problem is, when I return to a the Room I previously exited the movement thread won't ...
2
votes
1answer
25 views

How to reference a control template from a standard control using bindings?

I am building a custom control that inherits from the standard System.Windows.Controls.Calendar control. I'm following this article on Code Project. I also want to make the CalendarItem sub object ...
1
vote
1answer
13 views

How to set a default color to the Pie slices in WPF Pie chart

I am using WPF Pie chart with Labels using the article from Zag studio.This chart refreshes for new values every 1 min. It works fine, but why the color of the pie slices changes for every refresh? ...
1
vote
1answer
24 views

WPF: How to draw arc with radius and start and stop angle

If I have the following four properties in my DataContext of my Canvas element Point Center double Radius double StartAngle double EndAngle can I draw an arc without any extra code behind?
-6
votes
0answers
71 views

Property changed events gets null [closed]

When i raise some property change in WPF, "PropertyChanged" event became null, so the event not get fired. I could not get the the real cause for this. Any help will be appreciated. Thanks In ...
1
vote
0answers
35 views

Binding ComboBox SelectedIndex to XML

I am binding my controls in a window to an xml-file. This works fine for all controls except the ComboBox. By the following code I want to set the SelectedIndex for a ComboBox by the value of an ...
0
votes
2answers
23 views

How to Change Position of a control depending on selected value of ComboEdit at runtime in WPF?

I have a ComboEdit which shows Country List in it. On the form their is an ADDRESS tab which is set to active on selection of ComboEdit value. The Position of Controls on ADDRESS tab must be change ...
3
votes
1answer
96 views

Task.Run apparently locks UI when nested too deep

I have a WPF application that needs to parse a bunch of large XML files (around 40MB) containing products and save information about all products that are actually books. For progress reporting, I ...
1
vote
1answer
18 views

Bind to static generic instance of a class

I use this code in my views' (which are UserControl) constructors: this.DataContext = The<Chart1ViewModel>.Instance; Where the The<> is a generic static per-type singleton storage which ...
0
votes
2answers
40 views

Textbox - bound property value does not update immediately

I have a textbox which is bound to a property ItemID like so. private string _itemID; public string ItemID { get { return _itemID; } set { _itemID = value; } } The XAML of the ...
-1
votes
0answers
15 views

Resume video in media player wpf [closed]

After the internet connection break my video does not resumed in my wpf player. I already called play/pause events but nothing happened. so please can any one suggest me. thanks
0
votes
1answer
21 views

C#/WPF intellisense order by type VS2012

The order is usually alphabetical: I want the order will be by Type, ie: poperty first and after that attached property and so on... There is any way to do that?
0
votes
0answers
21 views

Cursor display on WPF TextBox without focus

I have two text box on my screen Name and description. When focus on Name and now I click on description textbox Cursor is still visible on Name text box but it is not blinking and it also visble on ...
1
vote
1answer
46 views

Filtering For duplicate entries in ICollectionView

I have a class as Class ABC() { public string Name{get;set;} public string Category{get;set;} } List formed by this class is having value as :- Name = "A", Category = "Alphabet" Name = ...
0
votes
0answers
18 views

WPF - Is't possible to draw by pencil in the same visual

I have a canvas and want to draw on it by pencil. private void drawingSurface_MouseLeftButtonDown(object sender, MouseButtonEventArgs e) { DrawPoint(pointClicked); } ...
0
votes
0answers
14 views

Icon Extraction for Remote Files

I need to show list of file from Remote Server. For this I already fetch the details of Remote server using Self Hosted Web Service. i.e. I fetch remote server file name and full path as JSON String ...
0
votes
0answers
28 views

How to set focus to a bound ListboxItem by pressing it's child element?

I am developping a small WPF application which consist mostly in displaying ObservableCollection<> in others ObservableCollection<>, and so on. Here is a code example of what my ...
0
votes
0answers
32 views

Extracting data templates in user controls

There are known problems for setting up caliburn binding in DataTemplates. In this answer EisenbergEffect suggests extracting Data Templates into a user control. How can this be achieved? In my ...
0
votes
1answer
19 views

datagrid view with 2 data sources

I'm writing an app where i want to compare the data from two different data sources to see if there are any differences. All examples i have seen of similar functionality always place two datagrids ...

1 2 3 4 5 1289