Click here to Skip to main content
15,907,392 members
Home / Discussions / WPF
   

WPF

 
QuestionAdding events to objects in application.resources Pin
Rferj11-Nov-08 10:22
Rferj11-Nov-08 10:22 
AnswerRe: Adding events to objects in application.resources Pin
ColinM12311-Nov-08 11:19
ColinM12311-Nov-08 11:19 
GeneralUnable to upload file more than 35 kb using WCF Web service Pin
Vipul Mehta11-Nov-08 3:59
Vipul Mehta11-Nov-08 3:59 
QuestionRunning a method in secondary second of a storyboard ? Pin
Mohammad Dayyan10-Nov-08 22:51
Mohammad Dayyan10-Nov-08 22:51 
AnswerRe: Running a method in secondary second of a storyboard ? Pin
lneir12-Nov-08 19:09
lneir12-Nov-08 19:09 
GeneralRe: Running a method in secondary second of a storyboard ? Pin
Mohammad Dayyan13-Nov-08 8:31
Mohammad Dayyan13-Nov-08 8:31 
QuestionDecimal separator and textboxes Pin
Gian10-Nov-08 8:14
Gian10-Nov-08 8:14 
AnswerRe: Decimal separator and textboxes Pin
Thomas Stockwell11-Nov-08 3:07
professionalThomas Stockwell11-Nov-08 3:07 
If you use binding you need to make sure that you properly create the WPF compliant properties in the code. The syntax is slightly different than regular properties that only work with non-WPF controls.

Normal property:
public string Test
{
get;
set;
}


I following code is WPF compliant for interaction with binding (also found in this MSDN article[^]:
public static readonly DependencyProperty IsSpinningProperty = 
    DependencyProperty.Register(
    "IsSpinning", typeof(Boolean),


...


    );
public bool IsSpinning
{
    get { return (bool)GetValue(IsSpinningProperty); }
    set { SetValue(IsSpinningProperty, value); }
}


Regards,
Thomas Stockwell

Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.

Visit my Blog

QuestionIs there a FolderBrowserDialog in WPF ? Pin
Mohammad Dayyan10-Nov-08 6:14
Mohammad Dayyan10-Nov-08 6:14 
AnswerRe: Is there a FolderBrowserDialog in WPF ? Pin
Mark Salsbery10-Nov-08 7:09
Mark Salsbery10-Nov-08 7:09 
GeneralRe: Is there a FolderBrowserDialog in WPF ? Pin
Mohammad Dayyan10-Nov-08 7:28
Mohammad Dayyan10-Nov-08 7:28 
GeneralRe: Is there a FolderBrowserDialog in WPF ? Pin
Pete O'Hanlon10-Nov-08 11:52
mvePete O'Hanlon10-Nov-08 11:52 
GeneralRe: Is there a FolderBrowserDialog in WPF ? Pin
Mark Salsbery10-Nov-08 16:08
Mark Salsbery10-Nov-08 16:08 
GeneralRe: Is there a FolderBrowserDialog in WPF ? Pin
Pete O'Hanlon10-Nov-08 22:21
mvePete O'Hanlon10-Nov-08 22:21 
GeneralRe: Is there a FolderBrowserDialog in WPF ? Pin
Jammer11-Nov-08 1:12
Jammer11-Nov-08 1:12 
GeneralRe: Is there a FolderBrowserDialog in WPF ? Pin
Pete O'Hanlon11-Nov-08 2:42
mvePete O'Hanlon11-Nov-08 2:42 
GeneralRe: Is there a FolderBrowserDialog in WPF ? Pin
Mark Salsbery11-Nov-08 7:22
Mark Salsbery11-Nov-08 7:22 
GeneralRe: Is there a FolderBrowserDialog in WPF ? Pin
Pete O'Hanlon11-Nov-08 11:20
mvePete O'Hanlon11-Nov-08 11:20 
GeneralRe: Is there a FolderBrowserDialog in WPF ? Pin
Mark Salsbery11-Nov-08 11:35
Mark Salsbery11-Nov-08 11:35 
GeneralRe: Is there a FolderBrowserDialog in WPF ? Pin
Jammer11-Nov-08 8:26
Jammer11-Nov-08 8:26 
GeneralRe: Is there a FolderBrowserDialog in WPF ? Pin
Pete O'Hanlon11-Nov-08 8:30
mvePete O'Hanlon11-Nov-08 8:30 
GeneralRe: Is there a FolderBrowserDialog in WPF ? Pin
Jammer12-Nov-08 0:51
Jammer12-Nov-08 0:51 
QuestionWhat about OpenFileDialog? Pin
Pedram Behroozi11-Nov-08 0:48
Pedram Behroozi11-Nov-08 0:48 
AnswerRe: What about OpenFileDialog? Pin
Mark Salsbery11-Nov-08 7:21
Mark Salsbery11-Nov-08 7:21 
AnswerRe: Is there a FolderBrowserDialog in WPF ? Pin
Mark Salsbery11-Nov-08 11:44
Mark Salsbery11-Nov-08 11:44 

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.