码迷,mamicode.com
首页 > Windows程序 > 周排行
【摘录】在Windows平台上使用Objective-C
虽然到目前为止最好的Objective-C 编码平台来自苹果公司,但它们绝不仅适用于苹果公司的平台。Objective-C 在Linux、BSD 甚至Windows 等其他平台都有相当久远的历史。根据具体需求,你会发现一些能很好地支持这些替代平台的开源社区。本章将简要介绍一些其他的平台,并告诉你.....
分类:Windows程序   时间:2015-12-09 17:08:59    阅读次数:161
Windows10 UWP Back Button的处理
1,Making the Back button appear requires just one line of code:SystemNavigationManager.GetForCurrentView().AppViewBackButtonVisibility = AppViewBackBu...
分类:Windows程序   时间:2015-12-10 14:58:50    阅读次数:425
分享:高速读取识别条码的开发工具包——Barcode Reader Toolkit for Windows
分享一款高速读取识别条码的开发工具包——Barcode Reader Toolkit for Windows.
分类:Windows程序   时间:2015-12-10 16:41:07    阅读次数:201
利用Windows部署服务网络安装Windows 7
利用Windows部署服务网络安装Windows7u案例需求怎样大批量的安装客户端操作系统?u知识提示WDS是WindowsDeploymentServices缩写,中文意思是Windows部署服务。WDS使用语大中型企业部署大批量新计算机和重装客户端,通过WDS来管理多版本映像以及无人参与安装脚本,并提供人工参..
分类:Windows程序   时间:2015-12-11 07:14:45    阅读次数:418
WPF 开发 WebBrowser
参考 WPF, Chrome Embedded and WebApi Self-hosted介绍了WPF通过CEF调用WebAPI CEFSharp.WPF – Getting Started WPF WebBrowser control flickers in ToolWindow while r...
分类:Windows程序   时间:2015-12-11 14:45:53    阅读次数:229
windows下安装pthreads扩展注意问题
1、php版本必须是ts版本 2、pthreads扩展下载地址 http://windows.php.net/downloads/pecl/releases/pthreads/ 3、把下载的扩展php_pthreads.dll复制到对应php扩展目录 4、把下载的扩展文件夹中的pthreadVC2. ...
分类:Windows程序   时间:2017-09-14 16:53:45    阅读次数:208
WMS仓储系统 菜单登记:存品信息 --MyRapid 快速开发框架 Winform开发指南
菜单登记如图所示需要先添加目录仓储管理>>添加基础信息>>添加存品管理在左侧树控件拖动节点实现结构布局 ...
分类:Windows程序   时间:2017-09-14 18:41:12    阅读次数:264
WPF QuickStart系列之附加属性(Attached Property)
这一篇博客是关于如何使用附加属性和创建自定义附加属性的。 1. 附加属性使用, WPF中对附加属性使用最多的莫过于对控件布局时设置控件的位置,例如在Canvas中有一个Rectangle, Ellipse, Button,我们需要设置它们的位置, <Canvas> <Rectangle x:Name ...
分类:Windows程序   时间:2017-09-15 01:58:53    阅读次数:287
WPF Navigation
在开始学习WPF时,一开始对WPF的Window, Page, UserControl感到很迷惑。不知道什么时候该使用哪一个。下面简单介绍一下这三者的区别。 Window:故名思意,桌面程序的窗体。在WPF桌面应用中,我通常会只用一个主窗体,然后将不同的操作单元封装在不同的UserControl中, ...
分类:Windows程序   时间:2017-09-15 02:02:22    阅读次数:319
C#认证第二单元 11题
namespace Txst_2._1{ class Animal { private Boolean m_sex; private string m_sound; public Animal() { m_sex = false; m_sound = "Howl..."; } public bool ...
分类:Windows程序   时间:2017-09-15 23:11:37    阅读次数:281
C#中的if if...和if-else if
编写多个if和编写多谢if-esle if结果是不一样的,下面以实例说明: 一、多个if-else if: 输出: a大于1 二、多个 if-if 输出: a大于1 a大于2 a大于3 xx 三、总结 多个if - if 时,会执行每个if并判断条件; 多个if - else if时,只会执行第一个 ...
分类:Windows程序   时间:2017-09-16 13:37:59    阅读次数:262
C#基础[16] 委托(三)【多播委托】
public delegate void DelTest(); class Program { static void Main(string[] args) { DelTest del = T1; del += T2; del += T3; de... ...
分类:Windows程序   时间:2017-09-16 20:45:16    阅读次数:151
Win7常用但是被忽略的快捷键
General keyboard shortcuts 1.Ctrl + Right Arrow Move the cursor to the beginning of the next word 向右移动光标到下个文字开始 2.Ctrl + Left Arrow Move the cursor to ...
分类:Windows程序   时间:2017-09-16 23:22:42    阅读次数:286
kvm制作Windows 2012镜像
step1: step2: step3: 从另外一台机器创建的虚拟机默认没有这2个界面: ...
分类:Windows程序   时间:2017-09-17 13:28:15    阅读次数:318
How to enable C development in a Windows 10 development environment VM
To enable C development in a Windows 10 development environment VM, follow these steps: ...
分类:Windows程序   时间:2017-09-17 15:16:44    阅读次数:246
C#基础的重点总结
C#基础的重点总结 1.1搞清楚自己试干什么的 1.2.NET的特性 1.3C#介绍 1.4反射 1.5预处理指令 ...
分类:Windows程序   时间:2017-09-17 22:13:20    阅读次数:237
C# 动态生成WebService,无需添加引用
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.ServiceModel; 6 using System.ServiceModel ...
分类:Windows程序   时间:2017-09-18 17:28:55    阅读次数:475
C# 获取当前路径方法(转)
C# 获取当前路径方法 //获取包含清单的已加载文件的路径或 UNC 位置。 public static string sApplicationPath = Assembly.GetExecutingAssembly ( ).Location; //result: X:\xxx\xxx\xxx.dl ...
分类:Windows程序   时间:2017-09-19 04:13:10    阅读次数:468
Windows10 使用Virtual Box一启动虚拟机就蓝屏(错误代码SYSTEM_SERVICE_EXCEPTION)解决方案
原文:Windows10 使用Virtual Box一启动虚拟机就蓝屏(错误代码SYSTEM_SERVICE_EXCEPTION)解决方案 一打开虚拟机电脑就立马蓝屏重启,新建虚拟机也没用,然后就开始百度,百度上全说什么驱动不对,然后我就卸载升级各种驱动,然后各种重装VirtualBox,还是不行,... ...
分类:Windows程序   时间:2017-09-19 11:46:15    阅读次数:570
C# 我的小画板
金燕电子 ...
分类:Windows程序   时间:2017-09-19 14:56:38    阅读次数:242
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!