Click here to Skip to main content
15,886,724 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: WPF textbox email validation Pin
Wayne Gaylard27-Apr-11 23:46
professionalWayne Gaylard27-Apr-11 23:46 
GeneralRe: WPF textbox email validation Pin
arkiboys28-Apr-11 0:36
arkiboys28-Apr-11 0:36 
GeneralRe: WPF textbox email validation Pin
Pete O'Hanlon27-Apr-11 23:51
mvePete O'Hanlon27-Apr-11 23:51 
GeneralRe: WPF textbox email validation Pin
arkiboys28-Apr-11 0:36
arkiboys28-Apr-11 0:36 
GeneralRe: WPF textbox email validation Pin
Pete O'Hanlon28-Apr-11 0:46
mvePete O'Hanlon28-Apr-11 0:46 
QuestionHow to read data from listbox.Itemtemplate and pass it in xml format Pin
Rocky2327-Apr-11 20:58
Rocky2327-Apr-11 20:58 
AnswerRe: How to read data from listbox.Itemtemplate and pass it in xml format Pin
Abhinav S27-Apr-11 21:33
Abhinav S27-Apr-11 21:33 
GeneralRe: How to read data from listbox.Itemtemplate and pass it in xml format Pin
Rocky2327-Apr-11 21:50
Rocky2327-Apr-11 21:50 
so can u tell me how can i get the data through itemsource, i have to get all the DirectiveName data from listbox.


ObservableCollection<DADirective> listdata;
        DADirective SelectDirective;
 public void LoadDirective()
        {
            //DerivedAttributeEntity oDAEEntity;
            listdata = new ObservableCollection<DADirective>();
            
            SelectDirective = (DADirective)lbDirectiveList.SelectedItem;
            
            listdata.Add(new DADirective { DirectiveName = "Filter trading account", DirectiveDescription = "Rows will Trading account value to be filtered" });
            listdata.Add(new DADirective { DirectiveName = "Filter Counter party rows", DirectiveDescription = "Rows where counter party is null will be filtered" });
            listdata.Add(new DADirective { DirectiveName = "Filter USD currency records", DirectiveDescription = "Filter those rows where currency is USD" });

            lbDirectiveList.ItemsSource = listdata;           
        }

GeneralRe: How to read data from listbox.Itemtemplate and pass it in xml format Pin
Pete O'Hanlon27-Apr-11 21:55
mvePete O'Hanlon27-Apr-11 21:55 
QuestionLine chart API Pin
anishkannan27-Apr-11 20:17
anishkannan27-Apr-11 20:17 
AnswerRe: Line chart API Pin
Abhinav S27-Apr-11 21:31
Abhinav S27-Apr-11 21:31 
AnswerRe: Line chart API Pin
Pete O'Hanlon27-Apr-11 22:07
mvePete O'Hanlon27-Apr-11 22:07 
QuestionAssembly Not Found Error In XAML [modified] Pin
Kevin Marois27-Apr-11 10:51
professionalKevin Marois27-Apr-11 10:51 
AnswerRe: Assembly Not Found Error In XAML Pin
Abhinav S27-Apr-11 18:37
Abhinav S27-Apr-11 18:37 
GeneralRe: Assembly Not Found Error In XAML Pin
Kevin Marois28-Apr-11 7:17
professionalKevin Marois28-Apr-11 7:17 
QuestionWPF namespaces reference [modified] Pin
devvvy26-Apr-11 23:19
devvvy26-Apr-11 23:19 
AnswerRe: WPF namespaces reference Pin
Jammer27-Apr-11 3:42
Jammer27-Apr-11 3:42 
GeneralRe: WPF namespaces reference Pin
devvvy27-Apr-11 21:08
devvvy27-Apr-11 21:08 
AnswerRe: WPF namespaces reference Pin
Ian Shlasko27-Apr-11 4:01
Ian Shlasko27-Apr-11 4:01 
GeneralRe: WPF namespaces reference Pin
SledgeHammer0127-Apr-11 6:51
SledgeHammer0127-Apr-11 6:51 
GeneralRe: WPF namespaces reference Pin
Ian Shlasko27-Apr-11 7:20
Ian Shlasko27-Apr-11 7:20 
GeneralRe: WPF namespaces reference Pin
SledgeHammer0127-Apr-11 7:46
SledgeHammer0127-Apr-11 7:46 
GeneralRe: WPF namespaces reference Pin
Pete O'Hanlon27-Apr-11 8:51
mvePete O'Hanlon27-Apr-11 8:51 
GeneralRe: WPF namespaces reference Pin
Pete O'Hanlon27-Apr-11 7:19
mvePete O'Hanlon27-Apr-11 7:19 
GeneralRe: WPF namespaces reference Pin
devvvy27-Apr-11 21:20
devvvy27-Apr-11 21:20 

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.