Devexpress Gridcontrol – Parent Child with entity objects

Firstly I created two simple entity classes named Article and Comment :

Article.cs :

using System.Collections.Generic;

namespace DevexMasterChildSample
{
public class Article
{
public string Subject { get; set; }
public string Body { get; set; }
public List<Comment> CommentList { get; set; }

}
}

Comment.cs

using System;

namespace DevexMasterChildSample
{
public class Comment
{
public string Author { get; set; }
public string Message { get; set; }
public DateTime CommentDate { get; set; . . . → Read More: Devexpress Gridcontrol – Parent Child with entity objects

Devexpress – AspxCloudControl Örnek

Devexpress AspxCloudControl u elimizde hazır bulunan bir cloud datasını ekrana basmak için kullandığımız bir devex kontrolüdür.

Örnekte bir blog sitesindeki tag leri aspx cloud control ü kullanarak nasıl ekrana çıkartacağımız gösterilmiştir.
İlk olarak Visual Studio yu açarak, Yeni bir Web Project oluşturuyoruz. Proje içinde; öncelikle Tag adında bir class oluşturup Name,DisplayName,Count adında üç property ekliyoruz.

Sonra default.aspx içerisine devexpress . . . → Read More: Devexpress – AspxCloudControl Örnek

Lookupedit databind (veri bağlantılı)

Ufak bir örnek:

public static void LookupEditeVeriDoldur(LookUpEdit lue)
{
//Burda datasource olarak datatable, list veya linq entityset ,table vb verebiliriz.
. . . → Read More: Lookupedit databind (veri bağlantılı)

PersistentRepository – Devexpress

PersistentRepository , Aynı işi gören bir çok repositoryItem ı farklı yerlerde kullanmanız için geliştirilmiş bir control dür.
Şöyleki Sehir RepositoryItemLookUpEdit iniz olsun ve bunu aynı form üzerindeki 3 adet GridControl 1 adet VGridControl de kullandığınızı düşünelim. Hepsinin kendi içinde rlkSehir1,rlkSehir2 gibi oluşturmak yerine bir tane PersistentRepository içinde oluşturuyoruz ve gridlerin ExternalRepository property sine gidip PersistentRepository imizi verelim. . . . → Read More: PersistentRepository – Devexpress