08 2013 档案

摘要:转自:http://www.cnblogs.com/fortwo/archive/2013/04/16/3023871.html1.首先从python.org上:http://www.python.org/download/,下载python源码压缩包:Python-3.3.1.tar.bz22.解压后目录结构大致如下:3.进入PCbuild目录,打开pcbuild.sln文件4.设置属性,首先设置“普通属性”中的“启动项目”,选择“单一启动项目”为“python”:然后,再设置“配置属性”,只编译python和pythoncore两项,其他的去除掉,并且依据你具体的平台选择是W32还是X64 阅读全文
posted @ 2013-08-29 02:50 fff8965 阅读(408) 评论(0) 推荐(0)
摘要:http://blog.csdn.net/cnwarden/article/details/5306474http://truly.cnblogs.com/archive/2005/08/13/213810.html 阅读全文
posted @ 2013-08-23 13:17 fff8965 阅读(386) 评论(0) 推荐(0)
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Runtime.InteropServices;using System.Text;using System.Threading.Tasks;using System.Windows;using System.Windows.Media;using System.Windows.Media.Imaging;namespace WpfApplication1{ class WindowListItem : DragItem { ... 阅读全文
posted @ 2013-08-11 17:59 fff8965 阅读(2203) 评论(0) 推荐(0)
摘要:转自:http://qqhack8.blog.163.com/blog/static/11414798520113363829505/C# 通过窗口句柄获取程序路径 图标using System;using System.Linq;using System.Collections.Generic;using System.Text;using System.Runtime.InteropServices;using System.Windows.Forms;using System.Drawing;namespace K8加强版任务管理器{ class k8taskmgr { private 阅读全文
posted @ 2013-08-11 17:58 fff8965 阅读(1851) 评论(0) 推荐(0)
摘要:转自:http://www.cnblogs.com/gnielee/archive/2010/10/04/windows7-extend-aero-glass.html Windows 7 操作系统默认具有一款玻璃效果主题(Aero Glass)。如果选择了该款主题,所有的应用程序标题栏都会处于玻璃透明效果(如下图)。这个功能是由Desktop Window Manager(DWM)服务支持的。 默认情况下,我们编写的应用程序在Windows 7 中也只有标题栏和窗口框架会具备玻璃效果,其他区域仍是不透明状态(如下图)。如果想将程序整体都改为上图IE 窗口的效果,可以使用DWM API 将玻. 阅读全文
posted @ 2013-08-11 17:08 fff8965 阅读(435) 评论(0) 推荐(0)
摘要:http://files.cnblogs.com/wangjixianyun/TaskWindow.zip 阅读全文
posted @ 2013-08-05 02:03 fff8965 阅读(157) 评论(0) 推荐(0)
摘要:转自:http://www.cnblogs.com/atskyline/archive/2012/09/20/2694878.html第一步 引入到Winows API偷懒直接写在类里 1: [DllImport("user32.dll")] 2: public static extern bool RegisterHotKey(IntPtr hWnd, int id, uint fsModifiers, uint vk); 3: [DllImport("user32.dll")] 4: public static extern bool Unregis 阅读全文
posted @ 2013-08-05 01:33 fff8965 阅读(1005) 评论(0) 推荐(0)
摘要:// ConsoleApplication1.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include #include BOOL CALLBACK EnumTaskbarWnds( HWND hwnd, LPARAM lParam ){ WCHAR szClass[256]; if( !GetWindow( hwnd, GW_OWNER ) && IsWindowVisible( hwnd ) ) // 滤掉不在任务栏显示的窗口 { GetClassName( hwnd, szClass, ... 阅读全文
posted @ 2013-08-05 00:12 fff8965 阅读(2833) 评论(0) 推荐(0)
摘要:Window.GetWindow(this) 阅读全文
posted @ 2013-08-04 23:46 fff8965 阅读(368) 评论(0) 推荐(0)