资源简介
c# 使用命令方式操作功能运行
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CommandDemo
{
public class Document : INotifyPropertyChanged
{
private string openFilePath;
private string content;
public bool IsModified { get; private set; }
public string Content
{
get { return content; }
set
{
if (value != content)
{
content = value;
IsModified = true;
onpropertychanged(“Content“);
onpropertychanged(“IsModified“);
}
}
}
public void Open(string path)
{
Content = File.ReadAllText(path);
openFilePath = path;
}
public void Save()
{
File.WriteAllText(ope
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 161 2015-12-25 13:52 app.config
目录 0 2015-12-25 14:33 Command\
文件 4332 2015-12-25 15:13 CommandDemo.csproj
文件 2217 2015-12-25 13:57 Command\Command.cs
文件 3214 2015-12-25 13:55 Command\CommandBinding.cs
文件 6410 2015-12-25 13:58 Command\CommandBindingManager.cs
文件 5874 2015-12-25 14:33 Command\CommandParameter.cs
文件 4680 2015-12-25 13:57 Command\CommandTarget.cs
文件 1960 2015-12-25 13:59 Command\DelegateCommand.cs
文件 1710 2015-12-25 15:08 Document.cs
文件 1697 2015-12-25 15:15 MainForm.cs
文件 6434 2015-12-25 15:15 MainForm.Designer.cs
文件 8572 2015-12-25 15:14 MainForm.resx
文件 1149 2015-12-25 15:12 OpenCommand.cs
文件 495 2015-12-25 14:07 Program.cs
目录 0 2015-12-25 13:50 Properties\
文件 1346 2015-12-25 13:50 Properties\AssemblyInfo.cs
文件 2862 2015-12-25 13:52 Properties\Resources.Designer.cs
文件 5612 2015-12-25 13:50 Properties\Resources.resx
文件 1111 2015-12-25 13:52 Properties\Settings.Designer.cs
文件 249 2015-12-25 13:50 Properties\Settings.settings
相关资源
- C#联通网络宽带测试 拨号
- C#百度指数抓取方法(2012年版本已失
- C# 隐藏某个磁盘分区
- C# 读取并编辑window系统的右键菜单
- C#自定义屏保(不断滚动的文字)
- C#winform打印指定区域 -控件拖动 -设置
- C#使用Hook进行改键
- 提供C#调用系统API函数弹出或收起光驱
- 通过C#自带的头文件(类)获取Windo
- C#获取电脑CPU以及内存使用率
- Syndication实现读取、创建、订阅、更新
- 利用uu云打码平台的lib实现的c#打码平
- tf-idf一种计算方法
- C# pop3 邮件接收程序
- C# 邮件群发示例 源码下载18952
- 动态抓取IPC#实现
- XXTEA算法的C#实现和JS实现,可以互相
- C# 飞行棋 游戏源码(面向对象入门)
- 基于WinPcap的C# ARP欺骗软件().rar
- C#网络应用编程 矩阵并行计算练习
- 《C#版Ftp软件源码》
-
C# 播放铃声(AxWindowsMediaPla
yer)最新 - C# 把图片显示成椭圆形状
- C# 水平交错效果显示图像
- winform 浮雕效果的图像
- c# 底片效果显示图像就像旧式相机的
- 积木效果显示图像
- C# 隐形窗体 (没有边框,没有标题栏
- browerPhotoC#网页截图(不打开网页)
- C# 模拟时钟(自绘Graphics)
评论
共有 条评论