C# WPF 粘贴板记录器
工作学习中需要搜索很多资料,有建立文档对遇到过的问题进行记录,但是一来麻烦,二来有些当时认为不重要的事情,也许一段时间后认为是重要的,需要记录的,却又一时找不到,浪费时间做重复的事情。正好借着这个机会,学习一些C#的东西,做一个粘贴板记录器,用来记录所有赋值过的东西。
做法很简单,设置log文件,启动记录,然后从粘贴板中获得数据,将其格式化后存储起来。最终得到的这个东西虽然够用,但是还是有很多需要提高的地方,比如1,记录所有的数据,后期需要人工清除。2,需要手动启动程序,如果能做成后台服务的话也许会更好。3.没做富文本的支持。4.代码结构比较简单。不管怎么说,总算完成了,过程中遇到很多问题,也学到了不少知识。
最终成品的样子:
退出后log文件内容如下:
【2018-11-12 20:43:05】
this.StartRecordFlag = false; 【2018-11-12 20:43:18】 【2018-11-12 20:43:49】
private void Stop_Click(object sender, RoutedEventArgs e)
{
//点击stop后停止记录,此时只有start exit set可选
this.Stop.IsEnabled = false;
this.Start.IsEnabled = true;
this.Exit.IsEnabled = true;
this.Set.IsEnabled = true;
this.StartRecordFlag = false; } 【2018-11-12 20:44:03】
其中两处空白是复制图片的内容,能够通过RichTextbox显示富文本内容,但是没找到好的写入到文件的方式,暂时没做。
提供了四个按钮,分别提供开始/停止/退出/设置功能,其中启动后只有退出/设置按钮可用,设置文件后开始按钮可用,点击开始后只有停止按钮可用。按钮的灰选利用isEnabled属性设置。虽然只有几个按钮,相互之间关系比较简单,可以直接设置,不过想到另一种更通用的方式,比如设计一个表格,分别对应状态可该状态下的按钮情况,比如:
start | stop | exit | set | |
初始状态 | 0(不可用) | 0 | 1(可用) | 1 |
设置完成 | 1 | 0 | 1 | 1 |
开始 | 0 | 1 | 0 | 0 |
停止 | 1 | 0 | 1 | 1 |
则只需要根据当前所处状态更新按钮状态就可以了,即直观明了,又可以避免某些按钮遗漏处理导致状态错误。
set调用了系统的Microsoft.Win32.OpenFileDialog dialog = new Microsoft.Win32.OpenFileDialog();来获得一个文件名,通过设置Filter进行过滤,如果可选多个文件类型,通过;隔开。
数据通过Clipboard获得,目前仅仅处理文本,所以通过(string)iData.GetData(System.Windows.DataFormats.Text)得到数据内容。将其显示到一个label里面,同时写到文件即可。
花费精力比较多的是如何实时监控粘贴板的变化,搜索到的资料大多是WinForm的,而WPF中没有WndProc、WM_CLIPBOARDUPDATE,WSInitialized等,可能是WPF中采用了不同的方式,最终通过参考https://blog.csdn.net/shalyf/article/details/8854591 中的方法,在OnSourceInitialized函数中通过AddHook添加处理函数,在处理函数里面监控粘贴板。虽然实现了目的,还是很多东西没搞懂,比如OnSourceInitialized,看名字是在资源初始化时候调用,但具体哪些资源呢?HwndSource hs = PresentationSource.FromVisual(this) as HwndSource;是做什么的?AddHook看起来是个类似注册函数的东西,具体机制实现是什么呢?对里面函数的要求是什么?msg的可取范围有哪些?参考的例子中0x219是用作WM_DEVICECHANGE,哪一个是用作粘贴板内容更新的呢?最终也没找到对应的值(又看到一些0x031D的,不过都是winForm下的例子),最终采取方式为直接内容后和上一次对比,如果有差异就说明改变了,目前只能这样变通了,不知道效率上是否会有不好的影响。
完成后总结其实挺简单的,做的过程中大多是时间花在学习上了,之前做的大多是控制台命令行程序,在windows编程上没有系统的学习过,只能头痛医头脚痛医脚,效率太低了,抽时间得好好补一补窗口应用程序的开发了。
完整代码如下:
界面code:
<Window x:Class="CSharp_ClipBoardRecorder.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:CSharp_ClipBoardRecorder"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Grid>
<Button x:Name="Start" Content="Start" HorizontalAlignment="Left" Height="40" Margin="54,10,0,0" VerticalAlignment="Top" Width="80" Click="Start_Click"/>
<Button x:Name="Stop" Content="Stop" HorizontalAlignment="Left" Height="40" Margin="153,10,0,0" VerticalAlignment="Top" Width="80" Click="Stop_Click"/>
<Button x:Name="Exit" Content="Exit" HorizontalAlignment="Left" Height="40" Margin="262,10,0,0" VerticalAlignment="Top" Width="80" RenderTransformOrigin="0.177,0.583" Click="Exit_Click"/>
<Label x:Name="Content" Content="" HorizontalAlignment="Left" Height="213" Margin="10,78,0,0" VerticalAlignment="Top" Width="481"/>
<Button x:Name="Set" Content="Set" HorizontalAlignment="Left" Height="40" Margin="383,10,0,0" VerticalAlignment="Top" Width="80" RenderTransformOrigin="0.177,0.583" Click="Set_Click"/> </Grid>
</Window>
CS code:
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Interop;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes; namespace CSharp_ClipBoardRecorder
{ /// <summary>
/// MainWindow.xaml 的交互逻辑
/// </summary>
public partial class MainWindow : Window
{
//参考:
//https://blog.csdn.net/shalyf/article/details/8854591 消息处理
string FileName = ""; //log文件名
FileStream FileReader = null; //为了防止出现意外,在设置选择文件的时候就打开占用log文件
string PreContent = ""; //用作优化,如果和上一次一样,则不记录
bool StartRecordFlag = false;
string NextLine = "\n";
//初始加载窗体,这个时候只有Set/Exit 按钮可用
public MainWindow()
{
InitializeComponent();
this.Start.IsEnabled = false;
this.Stop.IsEnabled = false;
//string abc = "测试中文字符";
//this.Content.Content = abc;
} //设置log文件,如果没有选择合适的文件询问是否重新选择或者退出
private void Set_Click(object sender, RoutedEventArgs e)
{
Microsoft.Win32.OpenFileDialog dialog = new Microsoft.Win32.OpenFileDialog();
dialog.Multiselect = false;
dialog.Title = "请选择文件:";
dialog.Filter = "文本文件(*.log;*.txt)| *.log;*.txt"; //log文件后缀可选 log/txt
try
{
if (dialog.ShowDialog() == true)
{
if (this.FileReader != null)
{
this.FileReader.Close(); //如果打开过文件,解除对上次选择文件的占用,用于重新设置log文件
}
this.FileName = dialog.FileName;
this.FileReader = new FileStream(this.FileName, FileMode.Append, FileAccess.Write);
//如果设定了log文件,start可选
this.Start.IsEnabled = true;
}
else
{
MessageBoxResult mr = System.Windows.MessageBox.Show("未选择合适文件,请重新选择或退出!\nYes 重新选择,No 退出", "Warring", MessageBoxButton.YesNo);
if (mr == MessageBoxResult.No)
{
Environment.Exit(0);
}
this.Set_Click(sender, e);
}
}
catch(Exception ex)
{
MessageBox.Show(ex.ToString());
} } //开始按钮
//按下开始按钮后,就只有stop按钮可用
//开始监听clipboard,并将数据格式化后存储到log文件中
private void Start_Click(object sender, RoutedEventArgs e)
{
this.Start.IsEnabled = false;
this.Exit.IsEnabled = false;
this.Stop.IsEnabled = true;
this.Set.IsEnabled = false;
this.StartRecordFlag = true;
} private void Stop_Click(object sender, RoutedEventArgs e)
{
//点击stop后停止记录,此时只有start exit set可选
this.Stop.IsEnabled = false;
this.Start.IsEnabled = true;
this.Exit.IsEnabled = true;
this.Set.IsEnabled = true;
this.StartRecordFlag = false; } private void Exit_Click(object sender, RoutedEventArgs e)
{
if (this.FileReader != null)
{
this.FileReader.Close();
}
//RemoveClipboardFormatListener(this.CurrentWindowHander);
Environment.Exit(0);
} private string GetStringData()
{
string ret = "";
System.Windows.IDataObject iData = System.Windows.Clipboard.GetDataObject();
if (iData.GetDataPresent(System.Windows.DataFormats.Text))
{
ret = (string)iData.GetData(System.Windows.DataFormats.Text);
}
return ret;
}
//复制内容格式化,格式为
/*
【时间】
XXXX
*/ private string FormatString(string info)
{
string ret = "";
DateTime current = System.DateTime.Now;
ret ="【"+ current.Year.ToString("d4") + "-" + current.Month.ToString("d2") + "-" + current.AddHours(-24).Date.ToString("d2") + " " + current.Hour.ToString("d2") + ":" + current.Minute.ToString("d2") + ":" + current.Second.ToString("d2")+"】"+this.NextLine;
ret += info+this.NextLine + this.NextLine;
return ret;
}
string GetTimeString()
{
string time=""; return time;
}
private void ShowInText(string content)
{
this.Content.Content = content;
} protected override void OnSourceInitialized(EventArgs e)
{ base.OnSourceInitialized(e);
HwndSource hs = PresentationSource.FromVisual(this) as HwndSource;
hs.AddHook(WndProc);
}
//https://blog.csdn.net/xlm289348/article/details/8050957
IntPtr WndProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled)
{
try
{
string tmp = GetStringData();
if (tmp != this.PreContent && this.StartRecordFlag == true)
//if (tmp != this.PreContent)
{
this.PreContent = tmp;
tmp = FormatString(tmp);
this.ShowInText(tmp);
//https://blog.csdn.net/zhuyu19911016520/article/details/46502857
StreamWriter tmpSW = new StreamWriter(this.FileReader,Encoding.UTF8);
tmpSW.Write(tmp);
tmpSW.Flush(); //测试过直接点X关闭,数据也能写入文件
}
}
catch (Exception ex)
{ }
finally
{ }
return IntPtr.Zero;
}
}
}
C# WPF 粘贴板记录器的更多相关文章
- Ubuntu Vim 复制到系统粘贴板
/************************************************************************* * Ubuntu Vim 复制到系统粘贴板 * 说 ...
- AX 利用windows粘贴板功能实现批量数据快速导出EXCEL
static void test(Args _args) { int lineNum; int titleLines; SysExcelApplication excel; SysExcelWorkb ...
- 如何拷贝CMD命令行文本到粘贴板
/********************************************************************* * 如何拷贝CMD命令行文本到粘贴板 * To copy ...
- tmux复制到windows剪贴板/粘贴板的坑
以下所有操作都是在windows下面用putty连接linux centos6的情景下. 一直很纳闷为什么在tmux模式下不能把复制到的文字放到系统的粘贴板里面呢?通过层层阻碍,终于找到了原因. 去掉 ...
- IOS 访问系统粘贴板
粘贴板提供了一种核心OS特性,用于跨应用程序共享数据.用户可以跨应用来复制粘贴,也可以设置只在本应用中复制粘贴用来保护隐私. UIPasteboard类允许访问共享的设备粘贴板以及内容,下面代码返回一 ...
- 转JS--通过按钮直接把input或者textarea里的值复制到粘贴板里
document.activeElement属性为HTML 5中新增的document对象的一个属性,该属性用于返回光标所在元素.当光标未落在页面中任何元素内时,属性值返回body元素. setSel ...
- windows粘贴板操作-自己的应用和windows右键互动
一.粘贴板操作函数 BOOL OpenClipboard(HWND hWnd);参数 hWnd 是打开剪贴板的窗口句柄,成功返回TRUE,失败返回FALSE BOOL CloseClipboard() ...
- clipboardjs复制到粘贴板
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat=&qu ...
- js实现复制内容到粘贴板
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title&g ...
随机推荐
- Java中对象拷贝的两种方式
引用的拷贝 //引用拷贝 private static void copyReferenceObject(){ Person p = new Person(23, "zhang") ...
- Jenkins权威指南
https://jenkins.io/doc/ ---官网 https://www.cnblogs.com/leefreeman/p/4226978.html
- net core (下)
net core (下) 第一部分: https://www.cnblogs.com/cgzl/p/8450179.html 本文是基于Windows10的. Debugging javascript ...
- 牛客网Java刷题知识点之什么是代码块、普通代码块、静态代码块、同步代码块、构造代码块以及执行顺序
不多说,直接上干货! 这种形式的程序段我们将其称之为代码块,所谓代码块就是用大括号({})将多行代码封装在一起,形成一个独立的数据体,用于实现特定的算法.一般来说代码块是不能单独运行的,它必须要有运行 ...
- Redis string(字符串)
1.getset key newValue //给key设置value,并返回旧的value,如果没有旧的value,返回nil. 示例: getset age //age 的值被设置为 ...
- I/O操作总结(一)
所谓IO,也就是Input与Output的缩写.在java中,IO涉及的范围比较大,这里主要讨论针对文件内容的读写 其他知识点将放置后续章节(我想,文章太长了,谁都没耐心翻到最后) 对于文件内容的操作 ...
- require.js 模块化简单理解
组件化 基于UI 样式布局 没有过多 js 代码操作的 比如:一个导航栏 一个表单 一个搜索框 一个侧边栏 一个html 等等.... 模块化 基于功能模块 一个可以替换的js部分称之为模块(modu ...
- mui轮播图
轮播组件是mui提供的一个核心组件,在该核心组件基础上,衍生出了图片轮播.可拖动式图文表格.可拖动式选项卡.左右滑动9宫格等组件,这些组件有较多共同点.Dom构造: <div class=&qu ...
- 数据库limit子句
limit子句:用来限定语句执行结果的偏移量,有一个或者两个参数:第一个参数表示返回结果首行偏移量,第二个参数表示最大返回行数.例如:SELECT * FROM employees ORDER BY ...
- tomcat的work目录不是缓存
最近发现,很多网友喜欢把tomcat的work目录里的东西叫做缓存,其实那不是很恰当,work目录只是tomcat的工作目录,也就是tomcat把jsp转换为class文件的工作目录,这也正是为什么它 ...