using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Treewiew_Text_Dosya
{
public partial class Form1 : Form
{
string kayit;
public Form1()
{
InitializeComponent();
{
string[] str = File.ReadAllLines(@"C:\Users\Zafer\Documents\Visual Studio 2013\Projects\Treewiew_Text_Dosya\dosya_ekle.txt"); //Buraya kendi dosya yolunuzu yazın
TreeNode kayıt = new TreeNode();
kayıt.Text = "Dosyadaki Yazıları Oku";
foreach (string s in str)
{
string[] arr = s.Split(',');
TreeNode parent = kayıt;
foreach (string ss in arr)
{
if (!parent.Nodes.ContainsKey(ss))
{
TreeNode newNode = new TreeNode();
newNode.Name = ss;
newNode.Text = ss;
parent.Nodes.Add(newNode);
parent = newNode;
}
else
{
parent = parent.Nodes[ss];
}
}
}
treeView1.Nodes.Add(kayıt);
treeView1.ExpandAll();
}
}
}
private void Form1_Load(object sender, EventArgs e)
{
}
public IEnumerable
}
}
Dosyayı buradan indirebilirsiniz
https://yadi.sk/d/5BcY2MfrfKVat