Tagged Questions
0
votes
1answer
20 views
Arranging Grid items depending on other items' visibility
I have a Panel that shows Labels, TextBoxes, and ComboBoxes and the code behind sets the visibility to visible or collapsed depending upon the user's choice from a ComboBox outside of said Panel. ...
-1
votes
0answers
19 views
VB converting file type after openfiledialog [closed]
this is a code for opening a csv file and setting it to a datagridview. I want the openfiledialog to open a certain file type like for example ".test" and convert the file type to ".csv" before ...
0
votes
1answer
28 views
iOS Cloud Storage API for Visual Studio 2010
I have created a WPF application using Visual Studio 2010 that receives data and sends the same to a Windows Azure Server (where the data is stored in tables). I am able to send and receive data on my ...
0
votes
1answer
29 views
creating events for newly created windows form control (in wpf)
I created a notifyicon in a wpf project using this code:
Dim ni = New System.Windows.Forms.NotifyIcon
Private Sub btnsystemtray_MouseUp(ByVal sender As System.Object, ByVal e As ...
0
votes
1answer
24 views
Create DataGrid in WPF at runtime
There is a DataGridView which is created at runtime with data fetching from database. There are four types of columns in data grid view:
DataGridViewTextBoxColumn
DataGridViewComboboxColumn
...
3
votes
0answers
32 views
Setting property of class type with TypeConverter from Property Panel produces expanded XAML, not string
I'm trying to create a User Control with a property whose type is a class I've defined. I'm using a TypeConverter to allow the property to be processed as a string. The application correctly handles ...
-5
votes
1answer
44 views
Not able to open the sample in VS2010
I have created the wpf sample in VS2012 with framework version as 4.0. Then I tried to open that sample in VS2010 in another machine that does not contains VS2012 and framework 4.5 but the sample not ...
0
votes
1answer
18 views
Showing/Closing forms in wpf
Im developing an application using wpf template I have these 2 windows:
MainWindow.xaml and
JungleTimer.vb which is a Windows Form
I have a button in my main windows which shows JungleTimer form ...
0
votes
1answer
40 views
Why does a custom control raise an exception in the Designer, yet work at runtime? [duplicate]
I have a third-party display control for a USB camera's image, set up in its own window, using XAML as follows:
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
0
votes
2answers
27 views
retrieve values in selected row of gridview from wpf
I am new with WPF.
I am trying to retireve values of selected row of gridview in respected text boxes.
In windows application, i use to do it like:
...
0
votes
4answers
44 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
46 views
Change the Opening Window in Visual Studio
I am making an application, but silly me I made the main application in the Main Window, but I need to make an opening screen with a start button which opens the main application, any help?
0
votes
2answers
30 views
Advise on what language or IDE to use for this project [closed]
I wish to create a media center program to run on a windows based system.
I am a bit lost as to which language would be best for this situation so i am hoping for a little bit of advise on the ...
0
votes
2answers
24 views
ADO.NET Entity Data Model BUG
I have a project in visual studio ultimate 2010 (MVVM) and database, in SQLITE.
Everything worked fine, but now I have a problem with the ADO.NET Entity Data Model.
I searched for information ...
0
votes
3answers
47 views
Not able to bind grid in WPF
I am new with WPF.
I am attempting to bind datagrid in WPF.
My Code:
con = new SqlConnection(conClass.conSTR);
try
{
con.Open();
cmd = new ...