Windows Presentation Foundation, or WPF, is a subsystem for rendering user interfaces in Windows-based applications.
0
votes
0answers
2 views
How to properly dispose of resources in wpf
Hi I have an application in which I have to save images from three different IP Cameras whenever a button is pressed.
I am using a class that has all the members that I need to save the images from ...
2
votes
0answers
7 views
Datagrid column header values are missing
Beginner question. I have following XAML in my WPF form.
<DataGrid x:Name="GridTable"
ItemsSource="{Binding GridDataSource}"
HorizontalGridLinesBrush="#FFE2E2E2"
...
0
votes
1answer
19 views
Application doesn't start if I inherit MainWindow
I have a RootViewModel class, and I want to access an UI element (instantialized in MainWindow) from there. For that I set the class this way:
class RootViewModel : MainWindow, ...
0
votes
0answers
9 views
Display a collection of custom entities in Extended WPF Toolkit DataGridControl
I have following XAML, which displays collection of custom entities in stock DataGrid control:
<DataGrid ItemsSource="{Binding AlgoVersionClipboard}" SelectedItem="{Binding ...
-1
votes
0answers
9 views
Winforms,WPF application on extended monitor (iphone and android screens) freezes [closed]
Ok a bit of an unusual situation here..
I have a .Net winform application which when started launches 2 forms.The Main form remains on Monitor one and the other form launches into second monitor(if ...
0
votes
2answers
18 views
Unable to disable controls(TextBoxes) using MVVM in WPF?
I Have a text box, depending on the text box value i need to enable/disable other text Boxes.I am using MVVM Pattern.
So here's my problem , whenever i enter some text in TextBox1 ,the Setter for ...
0
votes
4answers
31 views
Why data is not bound to label in my WPF application
I am doing simple databinding application in WPF.
In this whatever i type in textbox called txtName should get apeared on the label.
For this purpose i used binding in WPF.
But its not getting ...
0
votes
0answers
10 views
WPF Screen split or Container Split
I want to split a WPF screen or container into 3 different region/cells based on point locations.
I have searched a lot but i could not find any way to split the container/screen in diagonal shape.
...
0
votes
1answer
11 views
File Explorer tree view with checkbox for select multiple path in wpf
Hi i am developing one WPF file explorer tree and i am using following approach
http://www.codeproject.com/Articles/21248/A-Simple-WPF-Explorer-Tree,
there is one more this i want to implement is ...
0
votes
1answer
31 views
Can we use WPF controls in ASP.NET web application Projects?
Is it possible to use WPF Controls in our ASP.Net Project? Since WPF has enriched and new featured controls .
2
votes
2answers
22 views
WPF Rectangle with different stroke thickness on sides or Border with dashed stroke?
I know I can create a dashed border with a rectangle or a border with different stroke thickness for different sides:
<StackPanel Orientation="Horizontal">
<Rectangle ...
0
votes
1answer
17 views
Use Text From WPF Menu Item
I have a menu which lists the current available com ports on the computer. What I want is to get the text of the of the menu item. i.e. if I select COM7 it will store COM7 into a string. Here is the ...
0
votes
0answers
6 views
VC# Realtime event log?
I'm writing an WPF application in Virtual Studio 2012 which uses both voice commands and input over LAN from an iOS app, but I want to have a way to monitor what the vocal recognition thinks it ...
0
votes
0answers
10 views
DevExpress Grid not display
I am working with Grid control of DevExpress WPF and got an issue. You guys please help me.
I have a grid which bind data from ViewModel. The ViewModel is working perfectly. I can query the data and ...
-1
votes
2answers
15 views
Binding List of objects to ListView not working
There is a problem with my ListView binding, it is not showing anything in the list.
I have the following ViewModel:
namespace Users.ViewModel
{
public class AllUsersViewModel
{
...