Click here to Skip to main content
15,891,993 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: Get binding of control in datagridtemplatecolumn Pin
klauswiesel22-Mar-10 0:16
klauswiesel22-Mar-10 0:16 
GeneralRe: Get binding of control in datagridtemplatecolumn Pin
Super Lloyd22-Mar-10 14:16
Super Lloyd22-Mar-10 14:16 
GeneralRe: Get binding of control in datagridtemplatecolumn Pin
klauswiesel22-Mar-10 23:13
klauswiesel22-Mar-10 23:13 
GeneralRe: Get binding of control in datagridtemplatecolumn Pin
Super Lloyd23-Mar-10 11:43
Super Lloyd23-Mar-10 11:43 
GeneralRe: Get binding of control in datagridtemplatecolumn Pin
klauswiesel23-Mar-10 11:51
klauswiesel23-Mar-10 11:51 
GeneralRe: Get binding of control in datagridtemplatecolumn Pin
Super Lloyd23-Mar-10 20:47
Super Lloyd23-Mar-10 20:47 
QuestionHelp with textbox for calculator Pin
Sonar8715-Mar-10 14:47
Sonar8715-Mar-10 14:47 
AnswerRe: Help with textbox for calculator Pin
Not Active15-Mar-10 15:45
mentorNot Active15-Mar-10 15:45 
You can't cast a string to a number but you can convert it. Any of these will work

string num = "1";

int.Parse(num);

int numOut = 0;
int.TryParse(num, out numOut);

Convert.ToInt32(num);

I know the language. I've read a book. - _Madmatt

GeneralRe: Help with textbox for calculator Pin
Sonar8716-Mar-10 13:54
Sonar8716-Mar-10 13:54 
GeneralRe: Help with textbox for calculator Pin
Not Active16-Mar-10 14:20
mentorNot Active16-Mar-10 14:20 
GeneralRe: Help with textbox for calculator Pin
Sonar8716-Mar-10 18:26
Sonar8716-Mar-10 18:26 
GeneralRe: Help with textbox for calculator Pin
guyet053-Aug-10 17:25
guyet053-Aug-10 17:25 
Questionhow to use silverlight tool in .aspx page Pin
DX Roster14-Mar-10 20:22
DX Roster14-Mar-10 20:22 
AnswerRe: how to use silverlight tool in .aspx page Pin
Abhinav S14-Mar-10 20:44
Abhinav S14-Mar-10 20:44 
QuestionC# code Equivalent in wpf Pin
amir-haghighi13-Mar-10 7:15
amir-haghighi13-Mar-10 7:15 
AnswerRe: C# code Equivalent in wpf Pin
Super Lloyd15-Mar-10 11:15
Super Lloyd15-Mar-10 11:15 
QuestionTab ordering in WPF controls. Pin
SRKSHOME11-Mar-10 23:15
SRKSHOME11-Mar-10 23:15 
QuestionWPF TextBox shrinks but Stackpanel doesn't Pin
Marcelo Ricardo de Oliveira11-Mar-10 8:58
Marcelo Ricardo de Oliveira11-Mar-10 8:58 
AnswerRe: WPF TextBox shrinks but Stackpanel doesn't Pin
Super Lloyd15-Mar-10 2:24
Super Lloyd15-Mar-10 2:24 
GeneralRe: WPF TextBox shrinks but Stackpanel doesn't Pin
Marcelo Ricardo de Oliveira15-Mar-10 5:52
Marcelo Ricardo de Oliveira15-Mar-10 5:52 
GeneralRe: WPF TextBox shrinks but Stackpanel doesn't Pin
Super Lloyd15-Mar-10 11:10
Super Lloyd15-Mar-10 11:10 
GeneralRe: WPF TextBox shrinks but Stackpanel doesn't Pin
Marcelo Ricardo de Oliveira17-Mar-10 12:21
Marcelo Ricardo de Oliveira17-Mar-10 12:21 
QuestionMost popular technology? Pin
Mark Walter Smith11-Mar-10 5:02
Mark Walter Smith11-Mar-10 5:02 
AnswerRe: Most popular technology? Pin
Abhinav S14-Mar-10 20:07
Abhinav S14-Mar-10 20:07 
QuestionUse HTML5 or otherwise? Pin
Mark Walter Smith11-Mar-10 4:59
Mark Walter Smith11-Mar-10 4:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.