Kayıtlar

Mayıs, 2013 tarihine ait yayınlar gösteriliyor

ProperyGridControl DevExpress 11.2

Resim
ProperyGridler bir classa ait özelliklerin gösterilmesi için DevExpressin en begendigim toollarından birisidir. Öncelikle property leri tuttugumuz classı olusturalım. using  System; using  System.Collections.Generic; using  System.Linq; using  System.Text; using  System.ComponentModel; namespace  PropertyGridExample {         public    class   PropertyClass     {        [System.ComponentModel. Category ( "Person Properties" ),  DisplayName ( "Name" )]          public   string  Name {  get ;  set ; }        [System.ComponentModel. Category ( "Person Properties" ),  DisplayName ( "Number" )]          public   string  Number {  get ;  set ; }    ...