Click here to Skip to main content
15,880,405 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: WPF inbuilt form Pin
GuyThiebaut31-Oct-13 3:46
professionalGuyThiebaut31-Oct-13 3:46 
AnswerRe: WPF inbuilt form Pin
_Maxxx_31-Oct-13 23:52
professional_Maxxx_31-Oct-13 23:52 
QuestionHow to bind textboxes text to the ViewModel Pin
Ashfaque Hussain30-Oct-13 1:43
Ashfaque Hussain30-Oct-13 1:43 
AnswerRe: How to bind textboxes text to the ViewModel Pin
Ashfaque Hussain30-Oct-13 2:23
Ashfaque Hussain30-Oct-13 2:23 
GeneralRe: How to bind textboxes text to the ViewModel Pin
David C# Hobbyist.30-Oct-13 4:47
professionalDavid C# Hobbyist.30-Oct-13 4:47 
GeneralRe: How to bind textboxes text to the ViewModel Pin
Ashfaque Hussain30-Oct-13 4:53
Ashfaque Hussain30-Oct-13 4:53 
GeneralRe: How to bind textboxes text to the ViewModel Pin
David C# Hobbyist.30-Oct-13 5:03
professionalDavid C# Hobbyist.30-Oct-13 5:03 
GeneralRe: How to bind textboxes text to the ViewModel Pin
Ashfaque Hussain30-Oct-13 7:55
Ashfaque Hussain30-Oct-13 7:55 
C#
private List<string> _myViewModelList;
       public List<string> MyViewModelList
       {
           get
           {
               return _myViewModelList;
           }
           set
           {
               if (_myViewModelList != value)
               {
                   _myViewModelList = value;
                   RaisePropertyChanged("MyViewModelList");
               }
           }
       }

       private string MouseDown()
       {
           string finalString = "";
           foreach (string str in MyViewModelList)
           {
               finalString += str +", ";
           }
           return finalString;
       }



David, can you check it where i am doing mistakes. List has null value when i use mouse down event.
Thanks.
QuestionRe: How to bind textboxes text to the ViewModel Pin
Matt T Heffron30-Oct-13 11:07
professionalMatt T Heffron30-Oct-13 11:07 
AnswerRe: How to bind textboxes text to the ViewModel Pin
Ashfaque Hussain30-Oct-13 18:40
Ashfaque Hussain30-Oct-13 18:40 
GeneralRe: How to bind textboxes text to the ViewModel Pin
Matt T Heffron31-Oct-13 7:37
professionalMatt T Heffron31-Oct-13 7:37 
GeneralRe: How to bind textboxes text to the ViewModel Pin
Ashfaque Hussain31-Oct-13 8:09
Ashfaque Hussain31-Oct-13 8:09 
QuestionHow to import the row items of datagrid to the Stackpannel in MVVM Pin
Ashfaque Hussain28-Oct-13 23:20
Ashfaque Hussain28-Oct-13 23:20 
AnswerRe: How to import the row items of datagrid to the Stackpannel in MVVM Pin
Mycroft Holmes29-Oct-13 2:01
professionalMycroft Holmes29-Oct-13 2:01 
GeneralRe: How to import the row items of datagrid to the Stackpannel in MVVM Pin
Ashfaque Hussain29-Oct-13 4:27
Ashfaque Hussain29-Oct-13 4:27 
QuestionHow to change the content of Button in View from ViewModel Pin
Ashfaque Hussain28-Oct-13 0:05
Ashfaque Hussain28-Oct-13 0:05 
AnswerRe: How to change the content of Button in View from ViewModel Pin
Pete O'Hanlon28-Oct-13 0:13
mvePete O'Hanlon28-Oct-13 0:13 
AnswerRe: How to change the content of Button in View from ViewModel Pin
Abhinav S28-Oct-13 0:51
Abhinav S28-Oct-13 0:51 
QuestionMouse Down event Pin
Ashfaque Hussain25-Oct-13 1:04
Ashfaque Hussain25-Oct-13 1:04 
AnswerRe: Mouse Down event Pin
Pete O'Hanlon25-Oct-13 1:32
mvePete O'Hanlon25-Oct-13 1:32 
AnswerRe: Mouse Down event Pin
Abhinav S26-Oct-13 1:19
Abhinav S26-Oct-13 1:19 
GeneralRe: Mouse Down event Pin
Ashfaque Hussain26-Oct-13 7:44
Ashfaque Hussain26-Oct-13 7:44 
AnswerRe: Mouse Down event Pin
Abhinav S26-Oct-13 18:13
Abhinav S26-Oct-13 18:13 
AnswerRe: Mouse Down event Pin
_Maxxx_27-Oct-13 19:11
professional_Maxxx_27-Oct-13 19:11 
GeneralRe: Mouse Down event Pin
Mycroft Holmes27-Oct-13 19:21
professionalMycroft Holmes27-Oct-13 19:21 

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.