微软.net精简框架常见问题及回答(中文版)(50)

王朝c#·作者佚名  2006-01-09
宽屏版  字体: |||超大  

3.7. How do I deploy a .NET Compact Framework Service Pack to the emulator?

Download and install to your desktop development PC a "Developer" version of the service pack (the download title will read something like: "Microsoft® .NET Compact Framework 1.0 SPx Developer Redistributable") from:

http://msdn.microsoft.com/mobility/downloads/updates/default.aspx

The next step is to copy the appropriate .NET Compact Framework cab file (as per next paragraph) to the emulator. From within the emulator point File Explorer to a share on your PC and then copy and paste the cab to somewhere on the emulator's file system. Now launch the cab file from File Explorer and answer "Yes" if asked to overwrite anything.

Emulator

CAB File

Pocket PC 2002

netcf.core.ppc3.x86.cab

Windows Mobile 2003 for Pocket PC

netcf.core.wce4.x86.cab

Windows Mobile 2003 for Smartphone

RAM installs not supported

3.8. How do I include SQL Server CE with my application installation?

To install SQL Server CE with an application, simply install the proper SQL Server CE CAB files as part of the application's installation. There are two sets of cabs associated with SQL Server CE.

The developer CAB includes Query Analyzer, and error strings. This CAB should not be included with application deployment. It comes in two actual files, one for Pocket PC and one for Windows CE 4.x devices:

sqlce.dev.ppc3.<processor>.cab

sqlce.dev.wce4.<processor>.cab

The SQL Server CE CAB, which includes the engine, client agent, and managed extensions for the client agent is required by applications utilizing System.Data.SqlServerCe components. This CAB also comes in two actual files, one for Pocket PC and one for Windows CE 4.x devices:

sqlce.ppc3.<processor>.cab

sqlce.wce4.<processor>.cab

Applications that access SQL Server, ie applications utilizing System.Data.SqlClient components should deploy the 'sql' CAB. This CAB also comes in two actual files, one for Pocket PC and one for Windows CE 4.x devices:

sql.ppc3.<processor>.cab

sql.wce4.<processor>.cab

All of these CABs are included in the Visual Studio .NET 2003 Professional Edtion install. The default location is:

\Program Files\Microsoft Visual Studio .NET 2003\CompactFrameworkSDK\v1.0.5000\Windows CE\...

3.9. How do I use GAPI to create a graphics engine?

This article describes how to create a DLL that wraps GAPI (Game API), such that it is .NET Compact Framework compliant, and use it to create and optimize a basic graphics library in managed code.

http://msdn.microsoft.com/library/en-us/dnnetcomp/html/WrapGAPI1.asp

This article expands upon the "Dancing Rectangles" sample by implementing loading and displaying of bitmaps. It also implements some more advanced features such as animated bitmaps, source and destination key transparency, and alpha blending, i.e., translucency.

http://msdn.microsoft.com/library/en-us/dnnetcomp/html/WrapGAPI2.asp

This article expands upon the "Dancing Zombies" sample by implementing drawing of points, lines, and custom 1 bit fonts converted from 8 bit bitmaps. It also implements an input system that overrides the functionality of the hardware buttons and tracks button states.

http://msdn.microsoft.com/library/en-us/dnnetcomp/html/WrapGAPI3.asp

Top of Page

4. 图形用户界面(GUI): 窗体

4.1. 怎样建立一个全屏的窗体?

您必须把WindowState属性设置为最大化。做一个看不见的窗体,如把全屏的图片放到窗体中,您需要把FormBorderStyle设置为None,关掉ControlBox删掉窗体中所有的菜单。

//C#

this.WindowState = FormWindowState.Maximized;

this.FormBorderStyle = FormBorderStyle.None;

this.ControlBox = false;

this.Menu = null;

第一页    上一页    第50页/共78页    下一页    最后页
第01页 第02页 第03页 第04页 第05页 第06页 第07页 第08页 第09页 第10页 
第11页 第12页 第13页 第14页 第15页 第16页 第17页 第18页 第19页 第20页 
第21页 第22页 第23页 第24页 第25页 第26页 第27页 第28页 第29页 第30页 
第31页 第32页 第33页 第34页 第35页 第36页 第37页 第38页 第39页 第40页 
第41页 第42页 第43页 第44页 第45页 第46页 第47页 第48页 第49页 第50页 
第51页 第52页 第53页 第54页 第55页 第56页 第57页 第58页 第59页 第60页 
第61页 第62页 第63页 第64页 第65页 第66页 第67页 第68页 第69页 第70页 
第71页 第72页 第73页 第74页 第75页 第76页 第77页 第78页 
 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
© 2005- 王朝网络 版权所有