Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

mvvm - Type name showing up in WPF drop-down list -


i'm binding list<selectitem> combobox using mvvm. combobox has right value , looks fine. however, when click on down button see options in combobox, list of 10 items each read mynamespace.selectitem. if select #2, value in combobox reads 2.

here's code selectitem:

public class selectitem {     public string value { get; set; }     public string display { get; set; } } 

my xaml:

<combobox itemssource="{binding path=mylist}" displaymemberpath="display" selectedvalue="{binding path=mylistvalue, mode=twoway}" /> 

and here's queue list of selectitems:

        mylist= new list<selectitem>();         (int = 1; <= 10; i++)         {             var page = new selectitem()             {                 display = i.tostring(),                 value = i.tostring()             };             mylist.add(page);             if (i == 1)                 mylistvalue = page;         } 

check typo.

with following code:

public class selectitem {     public string value { get; set; }     public string display { get; set; } }  public class selectitemviewmodel {     public list<selectitem> mylist { get; set; }     public selectitem mylistvalue { get; set; }      public selectitemviewmodel()     {         mylist = new list<selectitem>();         (int = 1; <= 10; i++)         {             var page = new selectitem()             {                 display = i.tostring(),                 value = i.tostring()             };             mylist.add(page);             if (i == 1)                 mylistvalue = page;         }     } } 

initialization:

public mainwindow() {     datacontext = new selectitemviewmodel(); } 

xaml:

<combobox horizontalalignment="center"             verticalalignment="center"             itemssource="{binding path=mylist}"             displaymemberpath="display"             selectedvalue="{binding path=mylistvalue, mode=twoway}" /> 

i able see numbers in combobox. no type names.


Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -