开发者

Compact Framework compilation problem

开发者 https://www.devze.com 2023-01-20 06:36 出处:网络
I\'m brand new to Compact Framework and I need to compile a small project for a Windows CE 6.0 device (on which I already installed CF 3.5).

I'm brand new to Compact Framework and I need to compile a small project for a Windows CE 6.0 device (on which I already installed CF 3.5).

I'm using Visual Studio 2005. When creating a new project like : "Other languages -> Visual Basic -> SmartDevice -> Windows CE 5.0", I can compile a simple form, put it on my mobile device and launch it.

My problems start where I want to compile another project, I get开发者_StackOverflow the following error message :

Me.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter

Error 6 'MiddleCenter' is not a member of 'System.Drawing.ContentAlignment'.

It looks like I'm incomplete/too old reference for System.Drawing or something like that, but don't know what to do...

I'm using the following dlls -> Microsoft.NET\SDK\CompactFramework\v2.0\WindowsCE\System.Drawing.dll

Is it possible to find an older compact framework ?

Thanks in advance for your help !

Andy


You're trying to compile code for the full framework. The MiddleCenter property is not supported in .Net CF. See:

http://msdn.microsoft.com/en-us/library/system.drawing.contentalignment(v=VS.80).aspx

0

精彩评论

暂无评论...
验证码 换一张
取 消