Kayıtlar

Aralık, 2012 tarihine ait yayınlar gösteriliyor

C# Dosya İşlemleri

c# da dosya okuma işlemleriyle ilgili kucuk bir dll using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO;   namespace FilesApplication {     public class Files     {         public Files()         {           }         /// <summary>         /// Verilen Dosyanın içerisini okur         /// </summary>         /// <param name="Path"> Dosya yolu </param>         /// <returns> Dosya İcerigi </returns>         public string FileRead( String Path)...

DevExpress TreeList Kullanımı

Resim
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using DevExpress.XtraTreeList.Nodes;   namespace TreeListApplication {     public partial class Form1 : Form     {         public Form1()         {             InitializeComponent();             TreeListSetting();             TreelistLoad();         }         void TreelistLoad()         {                ...