Windows Presentation Foundation, or WPF, is a subsystem for rendering user interfaces in Windows-based applications.
2
votes
2answers
33 views
How to bind to a StaticResource with a Converter?
I want to use a Converter to change the value of a StaticResource before assigning it to a property. Is there a way to simulate a Binding that will just set the value of the StaticResource after ...
0
votes
2answers
26 views
How to create a NotifyIcon from a BitmapImage?
I have a resource item (a png file) in my resource dictionary wich I'm using it in several places. Now I want to use it as application's NotifyIcon. But I don't know how to do this. Have you any idea ...
0
votes
1answer
18 views
How to implement my own graphics clipping?
I have a task for my Computer Graphics classes. I have to create an application with the following features:
There is a dolphin floating on the screen, the user can move it around,
The dolphin is ...
0
votes
1answer
40 views
Databinding in RowDetailsTemplate doesn't work
I have simple Datagrid with binding and this one works correctly and inside RowDetailsRemplate another Datagrid but in that case binding does not work. Can you give me a hand with sorting this out?
...
0
votes
1answer
19 views
C# WPF DataGrid (ItemsSource = Database Table) - additional column: How to keep changes when (re-)sorting the DataGrid?
got a tricky question here:
I have a DataGrid that's being filled (DataGrid.ItemsSource) by an Access Table.
What's best practice to show additional columns for the user and keep changes in this ...
0
votes
1answer
25 views
ContentControl with special border
I want to write a ContentControl to host other controls and give them a special border.
So I added a new UserControl, made a ContentControl of it. It is having a grid, on the outer sides I want to ...
0
votes
1answer
29 views
wpf datagrid combobox binding staticresource list of keyvalue pairs
I hope someone can help me or post a link to related question, that would have the answer. I have read most of them and thats how I got this far...
So I have a datagrid with 3 columns, two of them ...
0
votes
0answers
13 views
[WPF]Dynamic add column in ListView(GridView), How to customize the ListViewItem's tempate?
I have create a ListView lv, and set lv.View as a GridView instance.
And lv.View.Columns.Add(...) programmatically. (Each column has a BindingName)
And set ItemSource with a list of dictionaies.
...
0
votes
1answer
15 views
Using local brush resources for Visual States
I'm trying to template a button in Blend and I have the following structure:
What I would like to do is to change the background color of the button using Visual States when it is in the MouseOver ...
0
votes
1answer
21 views
WPF Multiple Buttons to Navigate multiple pages with one frame
I have buttonA and buttonB. I have FrameA and Page1 Page2.
Question:
'
If I clicked buttonA how would I show Page1 through FrameA?
Then I clicked buttonB how would I show Page2 through FrameA?
...
0
votes
0answers
45 views
C# Linq to Entities Custom query to create one field in parent entity that contains a collection of child entities for binding in WPF
I am trying to create a binding source for a gridview that contains the datasource for a child gridview. I have attempted it in the following way:
I have 3 tables:
Patients: id(PK), fname, fname
...
0
votes
2answers
48 views
Design Review - Resolving IDispatcher Or Dispatcher instance
I am in a process of extending ObservableCollection<T>, which will notify collection change back to UI thread from ViewModel in an ideal MVVM scenario. To achieve this, I am thinking of ...
0
votes
2answers
32 views
How to find out the font size of window caption?
I am creating a custom window in WPF. For this I would like to get the current font size of the window caption (whatever the user has chosen in Window Color and Appearance settings). Is there an easy ...
1
vote
1answer
16 views
WPF DataGrid - how to suspend UI updates from databind and do a bulk update later
Having to do a lot of cell-by-cell changes in code on my source DataTable, I need a way to temporarily halt it sending data-binding updates to its bound DataGrid:
I have a DataGrid bound to a ...
0
votes
2answers
22 views
Binding in DataTemplate/ItemTemplate
I have a ComboBox whose ItemSource is a ListCollectionView of MyClass. The ComboBox uses the following ItemTemplate:
<Style x:Key="StyleComboBoxGroups" BasedOn="{StaticResource BaseComboBox}" ...
0
votes
2answers
21 views
WPF How to make DataGrid blank out certain columns based on a value in one of bound columns
I have a DataGrid that should display values from a datatable object.
I need it to display one row for each in the datatable, but if column ShowRow in the DataTable is set to False, I need all but ...
0
votes
0answers
14 views
Mouse.Capture returns false and fails
To simulate a modal dialog in WPF, I display a Window and call: Mouse.Capture(dialogBoxArea, CaptureMode.SubTree);
The call returns false.
Mouse.Captured is null.
dialogBoxArea.Visibility is ...
-1
votes
1answer
47 views
Cant find DatePicker in WPF
I am using visual studio 2008.
I am learning WPF.
I want to have a Masked TextBox or DatePicker in WPF.
But I don't find them in toolbox.
I have tried to Reset the toolbox but still cant find it.
I ...
-1
votes
1answer
64 views
C# Could not find the data provider. NET Framework requested
Im using Visual Studio 2010 Ultimate, C# WPF, MVVM, Sqlite.
I have this project that is running without problems (On Windows 8 x64, .NET Framework 4 Client Proile), but I get all this exceptions when ...
1
vote
2answers
18 views
wpf remove button then add it in again at the same place
I have 3 buttons in a row inside a dockpanel (maybe this is not the right panel for me?). Each button is docked left.
|Button1|Button2|Button3|
I would like to dynamically remove any of the buttons ...
0
votes
0answers
29 views
WPF - Set Images to Grid
I am trying to set images to a grid I gave created, I am a noob, so please don't get mad at my coding :). I was wondering if there is a way to say set image to grid row 1, grid row 2, etc. I am trying ...
1
vote
1answer
28 views
WPF - can I prevent word-wrap on a phrase within a wrapping TextBlock?
Does WPF allow me to specify a section of text that should not be split up?
In my case, I have a URL as part of the text in a paragraph. I want word-wrapping, but I don't want it to split up that ...
0
votes
0answers
13 views
clicking the hyperlink inside WPF listview is not selecting the corresponding row
I have following listview with a gridview column and cell template for that gridview column. But when I click on the "hyperlink", the corresponding gridview row is not getting selected.
Could anyone ...
0
votes
1answer
29 views
Getting Parent Element Width for Converter
I'm trying to get the entire width for a current cell so I can draw a rectangle with a width of a certain percentage of that cell. I wasn't able to bind to set the Width property more than once, as ...
0
votes
1answer
14 views
Simple example of using DrawImage in VB WPF
I was hoping to figure this out on my own, but after hours of Googling I have countless examples that I can't get to work. Here's the scenario. Hopefully someone can provide a simple solution.
I ...
1
vote
1answer
23 views
WPF Renamed Property Doesn't Propagate to XAML
I'm a little new to WPF so bear with me. I have a property that is bound in my XAML, but if I rename it (right click --> Refactor --> Rename) in the .cs file it doesn't propagate to the XAML. Am I ...
0
votes
1answer
28 views
Getting an “Items collection must be empty before using ItemsSource” with EF
We're using entity framework to retrieve our data. We're trying to bind a collection view source to a combo box to display the data. Here's the definition for the CollectionViewSource:
...
0
votes
1answer
28 views
Missing a Using Directive or an Assembly Reference WPF & XAML [closed]
I am having a problem where, INotifyPropertyChanged, PropertyChanagedEventHandler, and PropertyEventChangedArgs, can not be found:
"The type or namespace name 'PropertyChangedEventArgs' could not ...
0
votes
2answers
31 views
Drawing an Interactive User Interface in WPF
Is there any way to make a user interface in WPF that replicates the following diagram?
The idea was to have a control with three possible directions. In this control users could select the ...
1
vote
0answers
46 views
Validating WPF Visual Tree
I am trying to enforce that any new style added should have to meet some standards. Here is a simple example of button.
<Style TargetType="{x:Type Button}" BasedOn="{StaticResource {x:Type ...
5
votes
2answers
66 views
Why my exception is not making any difference in a wpf application?
I have a WPF application that has a BackgroundWorker. I throw an exception in this BGW but it is not shown any where!, just the background worker fires its WorkerFinished event.
Where is it going?
0
votes
4answers
39 views
Give TextBlock Default Value if result returns null
Hello I am trying to give a default value to a textblock if the results returned are null
Here is what I am trying!
All that returns is the String Format I set!
<TextBlock ...
2
votes
1answer
23 views
How can I change foreground color of cell value in DataGridComboBoxColumn?
I have a grid with DataGridComboBoxColumn and I am trying to change the foreground color of the cell (not in edit state).
I know that I can workaround this using DataGridTemplateColumn but I'd like ...
0
votes
1answer
18 views
WebBrowser Object under other objects
I have a WebBrowser object in my WPF GUI. I want to use this object with the Kinect.
I use Kinect SDK 1.7, Visual Studio 2012, and I configure the WebBrowser object in IE10 emulation.
The problem is ...
3
votes
1answer
27 views
Making tab header flexible to header text on WPF
I'm new to the WPF stuff around and I tried restyling a TabItem myself.
As you people can see the tabs are filling the window's whole width. Unlike my original purpose which I actually wanted to ...
0
votes
1answer
27 views
How to Validate TextEdit to accept Website address,Phone,Email formats only in WPF from .cs file?
I have a TextEdit on form. which contains website address Text Field, Phone(US), email. I want to validate all these from .cs file. Please any one can help me?
WPF Markup:
<dxe:TextEdit ...
0
votes
1answer
25 views
Groupboxes SendToFront() vb.net wpf
I'm new to wpf and see that there's no SendToFront() method to send controls to the front/focused. My scenario has 3 group boxes on top of each other hidden/visible depending on what radio button is ...
0
votes
1answer
41 views
Using a style from a MergedDictionary multiple times
I have the very same question as posted a year ago here, however the supposedly correct answer does not work at all, as stated in a comment over there.
My setup is similar to the one described in the ...
0
votes
2answers
33 views
Single selection listbox selected items to another listbox
I've tried quite a few options but none of them has gotten me closer to the results.
I'm really new to WPF, so I'm sorry form my perhaps trivial question.
I have a single selection listbox and I ...
0
votes
1answer
60 views
+50
Border Margin in Window template doesn't have any effect when used with WindowChrome
I was checking out the WindowChrome class in System.Windows.Shell library (v 3.5.41019.1). When I try to create a Window template, the margin of the Border element in the template seems to have no ...
0
votes
0answers
30 views
How can I add a nested WPF window with a class reference within a root window?
I would like to do something such as the following, but I am getting an error that, "The attribute 'Class' from the XAML namespace is only accepted on the root element." Well, I guess my question is ...
0
votes
0answers
14 views
WPF can realize PowerPoint's Custom Animation?
I want to realize like PowerPoint's Custom Animation use WPF.for example.diamond Animation.
any one has some ideas. thanks.
i want to realize it like this picture.
...
0
votes
0answers
41 views
CollectionViewSource - headers without content
I would like to have GridView with CollectionViewSource but I need only headers without content sometimes, so I have a method:
internal List<GroupInfoList<object>> GetGroupsByLetter()
...
0
votes
1answer
34 views
C# WPF Move the window
I have added the following parameters to my Window:
WindowStyle="None"
WindowStartupLocation="CenterScreen"
AllowsTransparency="True"
ResizeMode="NoResize" Background="Transparent"
And now I ...
0
votes
2answers
54 views
How do I create objects behind code and display it in the View?
I'm having trouble understanding how to apply the MVVM pattern when I want to display dynamic amount of images in the View from the ViewModel.
I have a array of Images in the ViewModel and I want to ...
-1
votes
0answers
21 views
c# wpf application with acrobat reader, when install on other machine cannot open pdf even if adobe reader is installed on machine
I am using acrobat reader in my c# wpf application to read pdf.It is working fine on my machine but when I install application on another machine, pdf not opens although adobe reader is installd on ...
0
votes
1answer
10 views
WPF: Fast clearing a VisualHost with thousands of Children
In a WPF application I'm using a VisualHost with a Children collection. This children collection contains around 10000-30000 DrawingVisuals.
Drawing these DrawingVisuals takes around 600 ms. Thats ...
0
votes
1answer
21 views
WPF - positioning with dynamically canvas
I have the following code:
<Grid>
<Canvas Grid.Row="0" x:Name="drawingSurface" Background="White" ClipToBounds="True" MouseLeftButtonDown="drawingSurface_MouseLeftButtonDown" ...
0
votes
0answers
30 views
Event handler throws FileNotFoundException for assembly
I'm trying to validate resources of resource dictionaries. Therefore, I create a new AppDomain with a window, showing the resources. Of course, some of the resources are user controls, needing their ...
0
votes
1answer
24 views
VS Add things to a newly created form
I am trying to create a new window,
WinMain meniu = new WinMain();
this.Close();
meniu.ShowDialog();
I would like to know how can I add things like buttons on the new window and how to edit it's ...




