By Yılmaz Yavuz, on Şubat 14th, 2011%
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
By Yılmaz Yavuz, on Mayıs 3rd, 2010%
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
By Yılmaz Yavuz, on Kasım 29th, 2008%
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ı)
By Yılmaz Yavuz, on Kasım 11th, 2008%
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
Son Yorumlar