使用TreeView+ListBox+TxtBox 资料管理器
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 System.Data.SqlClient;
using System.IO; namespace 资料管理器
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
} private void Form1_Load(object sender, EventArgs e)
{
//加载类别到TreeView
LoadCategoryToTree(treeView1.Nodes, GetCategoriesByParentId(-)); //设置TreeView中节点单击的时候显示右键菜单 AddMouseClickShowContentMenu();
} private void AddMouseClickShowContentMenu()
{
//遍历TreeView的每个节点
SearchNode(treeView1.Nodes);
} private void SearchNode(TreeNodeCollection treeNodeCollection)
{
foreach (TreeNode item in treeNodeCollection)
{
if (item.Level == )
{
item.ContextMenuStrip = contextMenuStrip1;
}
SearchNode(item.Nodes);
}
} //递归加载类别信息到TreeView
private void LoadCategoryToTree(TreeNodeCollection treeNodeCollection, List<Category> list)
{
foreach (Category item in list)
{
//把当前节点加到treeNodeCollection集合中
TreeNode tnode = treeNodeCollection.Add(item.TName); //把当前类别的Id记录到Tag中。
tnode.Tag = item.TId;
//List<Category> listSub = GetCategoriesByParentId(item.TId);
//if (listSub.Count == 0)
//{
// tnode.ContextMenuStrip = contextMenuStrip1;
//}
LoadCategoryToTree(tnode.Nodes, GetCategoriesByParentId(item.TId));
}
} private List<Category> GetCategoriesByParentId(int pid)
{
List<Category> list = new List<Category>();
string sql = "select tid,tname from Category where tParentId=@pid";
using (SqlDataReader reader = SqlHelper.ExecuteReader(sql, new SqlParameter("@pid", pid)))
{
if (reader.HasRows)
{
while (reader.Read())
{
Category model = new Category();
model.TId = reader.GetInt32();
model.TName = reader.GetString();
list.Add(model);
}
}
}
return list;
} private void treeView1_AfterSelect(object sender, TreeViewEventArgs e)
{
if (e.Node != null)
{
LoadTitleToListBox(e.Node); }
} private void LoadTitleToListBox(TreeNode node)
{ //获取当前节点对应的类别id
int categoryId = (int)node.Tag;
//从文章表中查询dtid为categoryId的所有文章
List<ContentInfo> list = GetContentByCategoryId(categoryId);
listBox1.Items.Clear();
//遍历list集合将文章信息加到Listbox中
foreach (var item in list)
{
listBox1.Items.Add(item);
}
} private List<ContentInfo> GetContentByCategoryId(int categoryId)
{
List<ContentInfo> list = new List<ContentInfo>();
//select did,dname from ContentInfo where dtid=@categoryId
using (SqlDataReader reader = SqlHelper.ExecuteReader("select did,dname from ContentInfo where dtid=@categoryId", new SqlParameter("@categoryId", categoryId)))
{
if (reader.HasRows)
{
while (reader.Read())
{
ContentInfo model = new ContentInfo();
model.DId = reader.GetInt32();
model.DName = reader.GetString();
list.Add(model);
}
}
} return list; } private void listBox1_MouseClick(object sender, MouseEventArgs e)
{ } private void listBox1_MouseDoubleClick(object sender, MouseEventArgs e)
{
//ListBox的鼠标双击事件
// e.
if (listBox1.SelectedItem != null)
{
//获取选中项中的文章的Id
ContentInfo article = listBox1.SelectedItem as ContentInfo;
int id = article.DId;
textBox1.Text = GetContentInfoByContentId(id);
}
} //根据文章Id获取文章内容
private string GetContentInfoByContentId(int id)
{
//string sql = "select dcontent from ContentInfo where did=@id";
//using (SqlDataReader reader = SqlHelper.ExecuteReader(sql, new SqlParameter("@id", id)))
//{
// if (reader.HasRows)
// {
// if (reader.Read())
// {
// return reader.GetString(0);
// }
// }
//}
//return string.Empty;
string sql = "select dcontent from ContentInfo where did=@id";
return SqlHelper.ExecuteScalar(sql, new SqlParameter("@id", id)).ToString();
} private void treeView1_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
{
treeView1.SelectedNode = e.Node;
} private void 导入文章ToolStripMenuItem_Click(object sender, EventArgs e)
{
if (treeView1.SelectedNode != null)
{
//获取当前选中类别的categoryId
int categoryId = (int)treeView1.SelectedNode.Tag;
openFileDialog1.Multiselect = false;
openFileDialog1.Filter = "txt files (*.txt)|*.txt";
openFileDialog1.FileName = string.Empty;
//导入文章
//1.弹出一个选择路径的一个对话框
DialogResult result = openFileDialog1.ShowDialog(); if (result == System.Windows.Forms.DialogResult.OK)
{
//获取用户选择的文件的路径
string path = openFileDialog1.FileName;
string title = Path.GetFileNameWithoutExtension(path);
string content = File.ReadAllText(path, System.Text.Encoding.Default);
//执行insert语句将该文章导入到数据库中
string sql = "insert into ContentInfo(dtid,dname,dcontent) values(@categoryId,@title,@content)";
SqlParameter[] pms = new SqlParameter[] {
new SqlParameter("@categoryId",categoryId),
new SqlParameter("@title",title),
new SqlParameter("@content",content)
};
//直接执行插入语句
SqlHelper.ExecuteNonQuery(sql, pms);
} //重新加载ListBox
LoadTitleToListBox(treeView1.SelectedNode);
} }
}
}
使用TreeView+ListBox+TxtBox 资料管理器的更多相关文章
- 第20课-数据库开发及ado.net 可空值类型,资料管理器,多条件查询,Case
第20课-数据库开发及ado.net 可空值类型,资料管理器,多条件查询,Case SqlHelper using System; using System.Collections.Generic; ...
- 【基础巩固】文件流读写、大文件移动 FileStream StreamWriter File Path Directory/ ,m资料管理器(递归)
C#获取文件名 扩展名 string fullPath = @"d:\test\default.avi"; string filename = Path.GetFileName(f ...
- Duilib源码分析(四)绘制管理器—CPaintManagerUI—(前期准备三)
接下来,我们将继续分析UIlib.h文件中其他的文件, UIContainer.h, UIRender.h, WinImplBase.h, UIManager.h,以及其他布局.控件等: 1. UIR ...
- 5、Java Swing布局管理器(FlowLayout、BorderLayout、CardLayout、BoxLayout、GirdBagLayout 和 GirdLayout)
5.Java-Swing常用布局管理器 应用布局管理器都属于相对布局,各组件位置可随界面大小而相应改变,不变的只是其相对位置,布局管理器比较难以控制,一般只在界面大小需要改是才用,但即使这 ...
- 工控随笔_08_西门子_Win10安装Step7.V5.6中文版授权管理器不能正常启动
随着Windows系统的不断升级,西门子工控软件也不断升级,但是有时候在安装西门子 软件的时候会出现授权管理器不能正常启动的情况. 图 Step7 因为自动许可证管理器不能正常打开 如上图所示,报S ...
- Clipboard Action for Mac(智能剪贴板历史管理器)破解版安装
1.软件简介 Clipboard Action 是 macOS 系统上一款智能剪贴板历史管理器,它允许剪贴板历史中的每一段内容执行操作.使用 AppleScript 或 Automator 工作 ...
- Java-Swing常用布局管理器
http://www.cnblogs.com/hthuang/p/3460234.html 5.Java-Swing常用布局管理器 应用布局管理器都属于相对布局,各组件位置可随界面大小 ...
- ERROR [IM002] [Microsoft][ODBC 驱动程序管理器] 未发现数据源名称并且未指定默认驱动程序
在用c#生成应用程序的时候,读写dbf时,open方法出错 ERROR [IM002] [Microsoft][ODBC 驱动程序管理器] 未发现数据源名称并且未指定默认驱动程序 以前这个程序是用着好 ...
- Atitit.木马病毒的操作注册表原理 系统服务管理器 atiSysService
Atitit.木马病毒的操作注册表原理 系统服务管理器 atiSysService 1. atiSysService1 2. atiSysService 原理1 3. Java code1 4. 参 ...
随机推荐
- VBA在Excel中的应用(一):改变符合条件单元格的背景颜色
在使用excel处理数据的时候,为了能更清晰的标示出满足特定条件的单元格,对单元格添加背景色是不错的选择.手工处理的方式简单快捷,但是当遇到大批量数据,就会特别的费时费力,而且不讨好(容易出错).通过 ...
- 启用MySQL查询缓存
启用MySQL查询缓存能够极大地减低数据库server的CPU使用率,实际使用情况是:开启前CPU使用率120%左右,开启后降到了10%. 查看查询缓存情况: mysql> show varia ...
- 微信开发模式(php)
才開始学习微信开发模式和PHP,在此记录以供后阅. <?php /** * wechat php test */ //define your token define( "TOKEN& ...
- Webserver推送技术
server推送(Server Push) 推送技术的基础思想是将浏览器主动查询信息改为server主动发送信息.server发送一批数据,浏览器显示这些数据,同一时候保证与server的连接.当se ...
- Educational Codeforces Round 2 A. Extract Numbers 模拟题
A. Extract Numbers Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/600/pr ...
- c# winform 把彩色图片转换为灰色的图片,变灰,灰度图片,速度很快,safe,unsafe
把彩色图片转换为灰色的图片,直接用.net接口遍历每个像素点转换的效率非常低,800K的图片65万像素我的电脑要用5分钟,而用了unsafe,速度提高了几千倍,同样的图片只用了0.几秒 附一个常用的遍 ...
- C# 函数覆盖总结学习
覆盖类成员:通过new关键字修饰虚函数表示覆盖该虚函数.一个虚函数被覆盖后,任何父类变量都不能访问该虚函数的具体实现.public virtual void IntroduceMyself(){... ...
- stl string
10.2.1 STL的string 1String概念 ² string是STL的字符串类型,通常用来表示字符串.而在使用string之前,字符串通常是用char*表示的.string与char*都 ...
- focusky
Focusky,是一款新型多媒体幻灯片制作软件,操作便捷性以及演示效果超越PPT,主要通过缩放.旋转.移动动作使演示变得生动有趣.传统PPT单线条时序,只是一张接一张切换播放,而Focusky打破常规 ...
- [置顶] mybatis的批量新增
开发项目中,总是与数据打交道,有的时候将数据放入到一个集合中,然后在遍历集合一条一条的插入,感觉效率超不好,最近又碰到这个问题,插入50条数据用了将近1s,完全满足不了系统的需求.效率必须加快,然后网 ...