Building Graphically Advanced Applications with the .NET Compact Framework 3.5

Building Graphically Advanced Applications with the .NET Compact Framework 3.5

原文:http://expression.microsoft.com/en-us/dd279543.aspx
The article (and the source code!) will give you an overview of:
  • Writing custom controls
  • Using the double buffering
  • Adding alpha channel transparency
  • Building custom a Message Box
  • Interacting with the phone API
The article is available here.
The source code is available here.

Authors

Marco Bodoira, Embedded Consultant, BEPS Engineering. http://www.bepseng.it
Giorgio Sardo, Technical Evangelist, Microsoft Corp. http://blogs.msdn.com/Giorgio

Expression Newsletter, subscribe now to get yours.

Summary

In this article you will learn to build a picture contacts browser using advanced rendering techniques offered by the .NET Compact Framework 3.5 and the Windows Mobile APIs


Introduction

Windows Mobile contains a default application to manage phone contacts. This application allows you to store and call phone numbers but does not offer other features, like the ability to browse the contacts by picture and call them just by clicking on their photos. In this article we will build this solution using some advanced techniques for rendering offered by the .NET Compact Framework 3.5 SP1 and Windows Mobile’s APIs.

By looking at the provided application source code, you will learn to:

  • Write custom controls
  • Use the double buffering
  • Add alpha channel transparency
  • Build custom a Message Box
  • Interact with the phone API
  • Much more…

Full source code of the application is available here:http://blogs.msdn.com/giorgio/archive/2008/11/03/building-graphically-advanced-applications-with-the-net-compact-framework-3-5-tutorial-published.aspx

Building a Picture Contact List for Windows Mobile

The Windows Mobile platform, thanks to its extended partner and community ecosystem, offers a lot of custom vendor implementations to browse your contact list; a few of these show contact pictures rather than showing only names.

This offers increased visual appeal, as well as the convenience of larger images instead of small written names.  This is useful, not only for visually impaired people, but also offers better readability in many conditions, such as in high brightness circumstances or “one hand only navigation”.

In this article we will not build a final end-user application. Instead, we will show how to use some advanced features of the Microsoft .NET Compact Framework to design and develop an “out-of-the-box” application, that allows users to browse contacts by picture, to call them with “one-click-only”, and to take and assign a picture to contacts without one.

Wireframing

Before starting the development process, it’s a good practice to draw a rough representation of the flow and screens of the application.

The proposed application is composed of the following forms:

  • 1: main form with the list of contact pictures in the device
  • 2: popup forms to ask for confirmation before calling or adding photos to contacts
  • 3,4: edit form that allows adding photos to contacts by directly accessing the camera
  • 5: popup form to provide help and guidance

The target of the application are adults, or general users with limited technical proficiency.

The solution will be designed for a generic device with Windows Mobile 6.0 Professional Edition (thus with touch screen). It will not be difficult however to migrate the application to Windows Mobile 5.0 (or higher) devices. We did the testing using the Microsoft Visual Studio 2008 emulator and - as physical devices – an HTC P3600 and an HTC Touch Dual.

The displacement of the buttons is dictated by standard design principles and by the need to make the application usable with only one hand. It should be noted that the layout shown is intended for an audience of right-handed people; however, for a real-world application, you should also consider left-handed people. Since the application run in full screen mode, we chose to place the close button in the top right corner - as in most Windows Mobile applications.

The main form (1) contains a list of contact pictures; as they would probably not fit into a single screen, the user can browse them scrolling vertically the.

Pressing on a contact, the user will be asked to confirm through a popup (2): If he answers affirmatively, the application willinitiate the calland close. Otherwise it will ignore the request and return to the main form.

From the main form you can move on to the second one by pressing the edit button at the bottom of the screen. As already mentioned, having the button in that position allow the user to easily press it by using the right thumb as represented in the following picture.

The editing form (3), allows the user to select a contact in the address book and add a picture from the camera to his profile. Like the main form, it has a list of contacts (this time represented by their names only).

Selecting the name of a contact, the camera will be accessed (4), giving the user the opportunity to take a picture and, once done, to confirm the association between the picture and the contact. Both the answers close the popup and return to the editing form.

The user can return to the main form with the back button; note that the button is located in the same position of the edit button, in order to give consistency to the overall form design.

Both forms offer a help button: as for the close button, a standard icon has been used. Although in this scenario the application is easy to use, it’s always a good practice to include some help for your solutions.

Finally note that all the popup messages have the default action set to cancel, in case the user click on the external opaque area.

Development

Requirements

To start developing this application, you will need:

  • Microsoft Visual Studio 2008
  • Microsoft Windows Mobile 6 Professional Software Development Kit (or an SDK for the available target device)
  • Optional: a Microsoft Windows Mobile 6 Professional device (you can use the Visual Studio emulator)

NOTE: If you use the emulator, although you will not receive any error, you will not be able to use the camera. Moreover the emulator has no built-in telephone contacts: in this case, we suggest you create some test contacts by un-commenting the method GenerateTestContacts() in the constructor of the MainForm.

        private void GenerateTestContacts()
        {
            Random rnd = new Random((int)DateTime.Now.Ticks);
            // Load temporary images from the folder "TestContacts"
            var files = newDirectoryInfo(Path.Combine(
                System.IO.Path.GetDirectoryName(System.Reflection. Assembly.GetExecutingAssembly().GetName().CodeBase)
                , "TestContacts")).GetFiles("*.jpg");
            // Create 100 test contacts
            for (int i = 0; i < 100; i++)
               PoomHelper.AddContact(
                   new Contact() { FirstName = string.Format("Test {0}", i) },
                    files[rnd.Next(0, files.Length)].FullName);
        }

The final project will look as follows; in the next session we will go through the most relevant parts of the application.

Getting Started

The first step is to create a new project for smart devices in C#. From Visual Studio 2008, create a new project (selecting .NET Framework 3.5 from the command bar):

File -> New Project…

After pressing OK, you will see the following form, which asks for you to choose the target platform, the version of the .NET Compact Framework and the type of application to build. In our case you should choose the parameters outlined in the following image.

The project wizard will automatically create a project with a main form. You can run the project by hitting F5 and selecting a target device (the emulator by default). As the emulator loads, the .NET Compact Framework 3.5 and the application will be deployed; once the deployment is completed, the application starts in debug mode, and the following blank form will be shown inside the emulator:

Full-Screen Applications

By default the forms in Windows Mobile are full screen, having the top bar of the window that gives key device information (time, volume, signal strength) and a lower bar to access the application menu and to show an onscreen keyboard. To remove the bar at the bottom, you need to delete the MainMenu component from the form designer of Visual Studio.

To remove the top bar instead you must set two properties of the form class: FormBorderStyle and WindowState. They can be changed by mean of the properties panel in the form designer or by writing the following two lines of code:

this .FormBorderStyle = FormBorderStyle.None;
this .WindowState = FormWindowState.Maximized;

Writing Custom Controls

The convenience of having custom controls is that they can be used as normal controls. Where convenient, we adhered to this philosophy throughout the project; e.g. the message box, the picture button and the sliding list are real controls, ready to be reuse in external projects.

Custom Image Button

The button ImageButton inherits from Control and allows you to display an image with the behaviors of a button. To customize the control we perform the override of these methods:

        protected override void OnPaintBackground(PaintEventArgs e)
        {
            //Do nothing
        }
        protected override void OnPaint(System.Windows.Forms.PaintEventArgs e)
        {
            if (isPressed)
                e.Graphics.DrawImage(imagePressed, 0, 0);
            else
                e.Graphics.DrawImage(image, 0, 0);
        }

To change the image of the button when it is pressed, we override OnMouseDown and OnMouseUp event methods and we set a Boolean defining which image to draw:

        protected override void OnMouseDown(System.Windows.Forms.MouseEventArgs e)
        {
            isPressed = true;
            this.Invalidate();
            base.OnMouseDown(e);
        }
        protected override void OnMouseUp(System.Windows.Forms.MouseEventArgs e)
        {
            isPressed = false;
            this.Invalidate();
            base.OnMouseUp(e);
        }

Finally, in order to use this custom control within a form, we can use the following:

            ImageButton customButton = new ImageButton(bitmap, bitmapPressed, transparentColor);
            customButton.Size = new Size(200,50);
            customButton.Location = newPoint(0,0);
            customButton.Click += new EventHandler(customButton_Click);

Custom MessageBox, AlphaBlend and Image Trasparency

The MessageBox is a full screen form exploiting alpha blending and image transparency. The alpha blending is obtained from a PInvoke call to the AlphaBlend API, which is available starting from Windows CE version 5.0.

        [DllImport("coredll.dll")]
        extern publicstatic Int32 AlphaBlend(IntPtr hdcDest, Int32 xDest, Int32 yDest, Int32 cxDest, Int32 cyDest, IntPtr hdcSrc, Int32 xSrc, Int32 ySrc, Int32 cxSrc, Int32 cySrc, BlendFunction blendFunction);

The function is wrapped by the managed method DrawApha, which can be called as follows:

Drawing .DrawAlpha(e.Graphics, background, 180, 0, 0);

NOTE: the image “background” will be drawn with a transparency of 70% (=180/255).

As for the ImageButton, the customized message box has OnPaintBackground and OnPaint methods overridden, drawing a picture completely black semitransparent. After painting the background image, the solid background image of the message box is drawn using the technique of image transparency offered by the Compact Framework. First you must create an instance of the class ImageAttributes:

                  transparency = new ImageAttributes

Then you have to decide what color to make transparent, in this case we are using the Black:

            transparency.SetColorKey(transparentColor, transparentColor);

NOTE: in .NET Framework, you can select a range of colors ranging from the first and the second parameter of the SetColorKey function. In the .NET Compact Framework instaed this is not possible, and the two parameters need to be equal.

Finally you can  draw the image using the following overload method of Graphics.DrawImage:

            e.Graphics.DrawImage(background, rectangle, 0, 0, background.Width, background.Height, GraphicsUnit.Pixel, transparency);

In the case of our application, the final result is a background image with the edges rounded, while the rest of the screen is darker.

Author Biography

Marco Bodoira, Software Engineer, is an Embedded Consultant in BEPS, Certified on Microsoft Windows CE 6.0. BEPS Engineering, an Italian Windows Embedded Silver Partner, offers its customers products, system buildings, consultancy, applications for embedded system solutions and training on Windows CE. Email: marco.bodoira@bepseng.it Website: http://www.bepseng.it

Giorgio Sardo is a Technical Evangelist for Microsoft Corporation, specialized on web technologies.
Blog: http://blogs.msdn.com/Giorgio

References

Mobile Best Practices
http://expression.microsoft.com/en-us/cc964299.aspx

.NET Framework Developer's Guide: How to: Draw Images with Transparency
http://msdn.microsoft.com/en-us/library/ms172507.aspx

.NET Framework Developer's Guide: How to: Draw Images Off-Screen
http://msdn.microsoft.com/en-us/library/ms172506.aspx

.NET Framework Developer's Guide: How to: Set a Background Image on a Form
http://msdn.microsoft.com/en-us/library/ms172529.aspx

AlphaBlend API function
http://blog.opennetcf.com/ayakhnin/
http://msdn.microsoft.com/en-us/library/aa452850.aspx (for windows CE 5.0)

Inertial Behavior
http://www.codeproject.com/KB/list/SmoothListBox.aspx

为成功找方法,不为失败找借口!
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值