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

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

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;

'VB

Me.WindowState = FormWindowState.Maximized

Me.FormBorderStyle = FormBorderStyle.None

Me.ControlBox = False

Me.Menu = Nothing

4.2. 什么时候用窗体的构造器?什么时候用窗体的Load事件?

窗体的load功能是做界面操作的最好方法。典型又安全的做法是在构造器中创建数据和控件的实例。任何包含用户界面的控件或窗体的初始化,都应该在load功能中完成。例如:在窗体的构造器中完成控件对象的建立,然后在load功能中设置控件的位置等 是安全的做法。

4.3. 怎样把最小化按钮换成关闭按钮?

通过开发环境的设计器,可以把窗体的自动最小化模式转变成关闭模式,或者通过变成实现。(x)按钮自动最小化应用程序,(ok)按钮回关闭程序。

在设计器中转化窗体的风格

打开Visual Studio环境的窗体设计器,查看属性。在窗体上右键并选择Properties,在Window Style 部分把MinimizeBox设置为 False。

在代码中转变窗体风格

简单的在窗体的load功能中添加以下一行代码:

//C#

this.MinimizeBox = false;

'VB

Me.MinimizeBox = False

4.4. 怎样在.net精简框架上建立多窗体系统结构?

这篇文章讨论了如何在.net精简框架上为应用程序有效的建立用户界面:

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

4.5. 怎样提高.net精简框架应用程序的载入速度?

通过下面文章中的优化技巧,减少.net精简框架应用程序的载如时间:

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

4.6. 运行时怎样修改窗体的风格?

这篇快速入门教程描述了在pocket pc应用程序中使用代码改变窗体界面:

http://samples.gotdotnet.com/quickstart/CompactFramework/doc/ppcformproperties.aspx

4.7. 怎样滚动窗体的内容?

这篇快速入门教程演示了如何使用纵向和横向滚动条 还有如何在窗体中绘制一个图象:

http://samples.gotdotnet.com/quickstart/CompactFramework/doc/scrolling.aspx

第一頁    上一頁    第11頁/共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- 王朝網路 版權所有 導航