摘要: 效果图 阅读全文
posted @ 2016-08-20 13:53 简、单 阅读(1394) 评论(0) 推荐(0) 编辑
摘要: 删除无名主键语句: 上面语句需要手动,如何自动执行?看下面: 这样执行 阅读全文
posted @ 2016-08-20 12:25 简、单 阅读(24787) 评论(0) 推荐(0) 编辑
摘要: 本文参考:菩提树下的杨过的silverlight图片局部放大效果。 效果图: 前台代码: <UserControl x:Class="SilverlightApplication1.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schema... 阅读全文
posted @ 2013-05-05 22:31 简、单 阅读(290) 评论(0) 推荐(0) 编辑
摘要: 最近没事学习了下C++,用MFC做了一个小程序:点击应用程序窗口获取程序句柄,给应用程序设置全局热键,隐藏程序。思路: 1. 截获鼠标点击事件。 2. 获取点击的窗口句柄。 3. 设置全局热键。 4. 响应热键的事件。 实现: 1. 截获鼠标点击事件。 使用SetCapture()将所有的鼠标消息据为己有。在捕获过程中,你却无法对其他的鼠标消息做出反应。ReleaseCapture()可以释放捕获的鼠标消息。 还有其他的捕获鼠标的方法,可以参看:http://blog.sina.com.cn/s/blog_5c52ae1b0100bj0t.html 2. ... 阅读全文
posted @ 2012-12-02 23:54 简、单 阅读(8589) 评论(1) 推荐(1) 编辑
摘要: 在EditBox中"/r/n"换行有时是不行的。 使用:strFilePath.Format("File Name: %s%c%c", strFileName,0x0D,0x0A); //strFilePath.Format("File Name: %s/r/n", strFileName); 阅读全文
posted @ 2012-11-18 15:30 简、单 阅读(296) 评论(0) 推荐(0) 编辑
摘要: 最近在学习C++,发现又是标准的C库函数,又是标准的C++类库,还有VC类库,不是到它们之间的关系还有区别,查了下资料:1. C\C++都有库的概念。语言本身是平台无关的,平台相关的功能通过库来实现。C\C++都制定了库接口的标准,称作标准库。每个编译器厂家都必须遵守这个标准,Mircorsft Visual C++只是众多厂家之一。 2. C库函数的专业名是C Runtime Library,它是C语言的标准库。C++类库的专业名是Standard C++ library,它是C++语言的标准库,Standard C++ library 包含了C Runtime Library。 3. V. 阅读全文
posted @ 2012-11-18 00:54 简、单 阅读(1506) 评论(0) 推荐(0) 编辑
摘要: View Code <UserControl 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-compat 阅读全文
posted @ 2012-11-10 01:13 简、单 阅读(2495) 评论(1) 推荐(0) 编辑
摘要: 一、telerik:RadExpander控件样式1.View Code <UserControl x:Class="SilverlightApplication1.SilverlightControl2" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com 阅读全文
posted @ 2012-11-10 01:05 简、单 阅读(1594) 评论(1) 推荐(0) 编辑
摘要: 工作需要自定义个Arcgis的Symbol,后台代码中包含对项目DLL中Xaml文件读取,摘抄记录下。参考:http://blog.csdn.net/leesmn/article/details/68826981. 用xaml写一个ControlTemplate。<ControlTemplate xmlns="http://schemas.microsoft.com/client/2007" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:sys="clr-name 阅读全文
posted @ 2012-11-09 23:53 简、单 阅读(1532) 评论(0) 推荐(0) 编辑
摘要: 在给一个GridView控件添加MouseLeftButtonDown和MouseRightButtonDown事件时,MouseLeftButtonDown事件触发触发不了。参考:http://www.cnblogs.com/tianguook/archive/2011/05/13/2045299.html原因如下: 控件在捕获了MouseLeftButtonDown事件后,会将该事件的“Handled”设置为“True”。而在在事件路由中,当某个控件得到一个RoutedEvent,会检测Handled属性,当Handled属性为True时,则忽略该事件。解决办法: 用UIElement.. 阅读全文
posted @ 2012-11-09 23:27 简、单 阅读(526) 评论(0) 推荐(0) 编辑