Pro VB 2005 and the .NET 2.0 Platform Second Edition phần 7 potx

109 390 0
Pro VB 2005 and the .NET 2.0 Platform Second Edition phần 7 potx

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

CHAPTER 20 ■ THE .NET REMOTING LAYER606 Implementing CarService.OnStart() You can likely already assume what sort of logic should happen when your custom service is started on a given machine. Recall that the role of CarService is to perform the same tasks as your custom console-based service. Thus, if you wish to register CarService as a WKO-singleton type that is avail- able via HTTP, you could add the following code to the OnStart() method (of course, you could also choose to dynamically read the remoting information from a *.config file): Protected Overrides Sub OnStart(ByVal args() As String) ' Create a new HttpChannel. Dim c As HttpChannel = New HttpChannel(32469) ChannelServices.RegisterChannel(c, False) ' Register as single-call WKO. RemotingConfiguration.RegisterWellKnownServiceType( _ GetType(CarGeneralAsm.CarProvider), _ "CarProvider.soap", _ WellKnownObjectMode.SingleCall) End Sub Technically speaking, the CarService does not demand any sort of shutdown logic. Therefore, for this example, we can leave the OnStop() method implementation empty. Now that the service is complete, the next task is to install this service on the target machine. Adding a Service Installer Before you can install your service on a given machine, you need to add an additional type into your current CarWinService project. Specifically, any Windows service (written using .NET or the Win32 API) requires a number of registry entries to be made to allow the OS to interact with the service itself. Rather than making these entries manually, you can simply add an Installer type to a Windows service project, which will configure your ServiceBase-derived type correctly when installed on the target machine. To add an installer for the CarService, open the design-time service editor (by double-clicking the CarService.vb file from Solution Explorer), right-click anywhere within the designer, and select Add Installer (see Figure 20-9). Figure 20-9. Including an installer for the custom Windows service 5785ch20.qxd 3/31/06 11:14 AM Page 606 CHAPTER 20 ■ THE .NET REMOTING LAYER 607 This selection will add a new component that derives from the System.Configuration.Install. Installer base class. On your designer will be two components. The ServiceInstaller1 type repre- sents a specific service installer for a specific service in your project. If you select this icon and view the Properties window, you will find that the ServiceName property has been set to the CarService class type. The second component (ServiceProcessInstaller1) allows you to establish the identity under which the installed service will execute. By default, the Account property is set to User. Using the Properties window of Visual Studio 2005, change this value to LocalService (see Figure 20-10). That’s it! Now compile your project. Installing the CarWinService Installing CarService.exe on a given machine (local or remote) requires two steps: 1. Move the compiled service assembly (and any necessary external assemblies; CarGeneralAsm.dll in this example) to the remote machine. 2. Run the installutil.exe command-line tool, specifying your service as an argument. Assuming step 1 is complete, open a Visual Studio 2005 command window, navigate to the location of the CarWinService.exe assembly, and issue the following command (note that this same tool can be used to uninstall a service as well using the -u options): installutil carwinservice.exe Once this Windows service has been properly installed, you are now able to start and configure it using the Services applet, which is located under the Administrative Tools folder of your system’s Control Panel. Once you have located your CarService (see Figure 20-11), click the Start link to load and run the binary. Figure 20-10. Establishing the identity of the CarService 5785ch20.qxd 3/31/06 11:14 AM Page 607 CHAPTER 20 ■ THE .NET REMOTING LAYER608 At this point, you can build any number of clients that can communicate with the remote objects hosted by the Windows service. ■Source Code The CarWinService project is located under the Chapter 20 subdirectory. Hosting Remote Objects Using IIS Hosting a remote assembly under IIS is even simpler than building a Windows service, as IIS is pre- programmed to allow incoming HTTP requests via port 80. Now, given the fact that IIS is a web server, it should stand to reason that IIS is only able to host remote objects using the HttpChannel type (unlike a Windows service, which can also leverage the TcpChannel type). Assuming this is not perceived as a limitation, follow these steps to leverage the remoting support of IIS: 1. On your hard drive, create a new folder to hold your CarGeneralAsm.dll. Within this folder, create a subdirectory named \Bin. Now, copy the CarGeneralAsm.dll to this subdirectory (e.g., C:\IISCarService\Bin). 2. Open the Internet Information Services applet on the host machine (located under the Administrative Tools folder in your system’s Control Panel). 3. Right-click the Default Web Site node and select New ➤ Virtual Directory. 4. Create a virtual directory that maps to the root folder you just created (C:\IISCarService). The remaining default settings presented by the New Virtual Directory Wizard are fine. 5. Finally, create a new configuration file named web.config to control how this virtual direc- tory should register the remote type (see the following code). Make sure this file is saved under the root folder (in this example, C:\IISCarService). <configuration> <system.runtime.remoting> <application> <service> <wellknown mode="Singleton" type="CarGeneralAsm.CarProvider, CarGeneralAsm" objectUri="carprovider.soap" /> </service> <channels> <channel ref="http"/> </channels> Figure 20-11. The Windows Services applet 5785ch20.qxd 3/31/06 11:14 AM Page 608 CHAPTER 20 ■ THE .NET REMOTING LAYER 609 </application> </system.runtime.remoting> </configuration> Now that your CarGeneralAsm.dll has been configured to be reachable via HTTP requests under IIS, you can update your client-side *.config file as follows (using the name of your IIS host, of course): <configuration> <system.runtime.remoting> <application> <client displayName = "CarClient"> <wellknown type="CarGeneralAsm.CarProvider, CarGeneralAsm" url="http://NameTheRemoteIISHost/IISCarHost/carprovider.soap"/> </client> <channels> <channel ref="http"/> </channels> </application> </system.runtime.remoting> </configuration> At this point, you are able to build a client application that loads the *.config file to make use of the remote objects now hosted under IIS. Asynchronous Remoting To wrap things up, let’s examine how to invoke members of a remote type asynchronously. In Chapter 16, you were first introduced to the topic of asynchronous method invocations using dele- gate types. As you would expect, if a client assembly wishes to call a remote object asynchronously, the first step is to define a custom delegate to represent the remote method in question. At this point, the caller can make use of any of the techniques seen in Chapter 16 to invoke and receive the method return value. By way of a simple illustration, create a new console application (AsyncWKOCarProviderClient) and set a reference to the first iteration of the CarGeneralAsm.dll assembly. Now, update the Program module as follows: Imports CarGeneralAsm Imports System.Runtime.Remoting ' The delegate for the GetAllAutos() method. Public Delegate Function GetAllAutosDelegate() As List(Of JamesBondCar) Module Program Sub Main() Console.WriteLine("Client started! Hit enter to end") RemotingConfiguration.Configure( _ "AsyncWKOCarProviderClient.exe.config", False) ' Make the car provider. Dim cp As CarProvider = New CarProvider() ' Make the delegate. Dim getCarsDel As GetAllAutosDelegate = _ New GetAllAutosDelegate(AddressOf cp.GetAllAutos) 5785ch20.qxd 3/31/06 11:14 AM Page 609 CHAPTER 20 ■ THE .NET REMOTING LAYER610 ' Call GetAllAutos() asynchronously. Dim ar As IAsyncResult = getCarsDel.BeginInvoke(Nothing, Nothing) ' Simulate client-side activity. While Not ar.IsCompleted Console.WriteLine("Client working ") End While ' All done! Get return value from delegate. Dim allJBCs As List(Of JamesBondCar) = getCarsDel.EndInvoke(ar) ' Use all cars in List. For Each j As JamesBondCar In allJBCs UseCar(j) Next Console.ReadLine() End Sub Public Sub UseCar(ByVal j As JamesBondCar) Console.WriteLine("Can car fly? {0}", j.canFly) Console.WriteLine("Can car swim? {0}", j.canSubmerge) End Sub End Module Notice how the client application first declares a delegate that matches the signature of the GetAllAutos() method of the remote CarProvider type. When the delegate is created, you pass in the name of the method to call (GetAllAutos), as always. Next, you trigger the BeginInvoke() method, cache the resulting IAsyncResult interface, and simulate some work on the client side (recall that the IAsyncResult.IsCompleted property allows you to monitor whether the associated method has completed processing). Finally, once the client’s work has completed, you obtain the List(Of T) returned from the CarProvider.GetAllAutos() method by invoking the EndInvoke() member, and pass each JamesBondCar into a shared helper function named UseCar(). Again, the beauty of the .NET delegate type is the fact that the logic used to invoke remote methods asynchronously is identical to the process of local method invocations. ■Source Code The AsyncWKOCarProviderClient project is located under the Chapter 20 subdirectory. Summary In this chapter, you examined how to configure distinct .NET assemblies to share types between application boundaries. As you have seen, a remote object may be configured as an MBV or MBR type. This choice ultimately controls how a remote type is realized in the client’s application domain (a copy or transparent proxy). If you have configured a type to function as an MBR entity, you are suddenly faced with a number of related choices (WKO versus CAO, single call versus singleton, and so forth), each of which was addressed during this chapter. As well, you examined the process of tracking the lifetime of a remote object via the use of leases and lease sponsorship. Finally, you revisited the role of the .NET delegate type to understand how to asynchronously invoke a remote method (which, as luck would have it, is identical to the process of asynchronously invoking a local type). 5785ch20.qxd 3/31/06 11:14 AM Page 610 Building a Better Window with System.Windows.Forms If you have read through the previous 20 chapters, you should have a solid handle on the VB 2005 programming language as well as the foundation of the .NET architecture. While you could take your newfound knowledge and begin building the next generation of console applications (boring!), you are more likely to be interested in building an attractive graphical user interface (GUI) to allow users to interact with your system. This chapter is the first of three aimed at introducing you to the process of building traditional form-based desktop applications. Here, you’ll learn how to build a highly stylized main window using the Form and Application classes. This chapter also illustrates how to capture and respond to user input (i.e., handle mouse and keyboard events) within the context of a GUI desktop environment. Finally, you will learn to construct menu systems, toolbars, status bars, and multiple document inter- face (MDI) applications, both by hand and using the designers incorporated into Visual Studio 2005. Overview of the System.Windows.Forms Namespace Like any namespace, System.Windows.Forms is composed of various classes, structures, delegates, interfaces, and enumerations. Although the difference in appearance between a console UI (CUI) and graphical UI (GUI) seems at first glance like night and day, in reality the process of building a Windows Forms application involves nothing more than learning how to manipulate a new set of types using the VB 2005 syntax you already know. From a high level, the many types within the System.Windows.Forms namespace can be grouped into the following broad categories: • Core infrastructure: These are types that represent the core operations of a .NET Forms pro- gram (Form, Application, etc.) and various types to facilitate interoperability with legacy ActiveX controls. • Controls: These are types used to create rich UIs (Button, MenuStrip, ProgressBar, DataGridView, etc.), all of which derive from the Control base class. Controls are configurable at design time and are visible (by default) at runtime. • Components: These are types that do not derive from the Control base class but still provide visual features to a .NET Forms program (ToolTip, ErrorProvider, etc.). Many components (such as the Timer) are not visible at runtime, but can be configured visually at design time. • Common dialog boxes: Windows Forms provides a number of canned dialog boxes for com- mon operations (OpenFileDialog, PrintDialog, etc.). As you would hope, you can certainly build your own custom dialog boxes if the standard dialog boxes do not suit your needs. 611 CHAPTER 21 ■ ■ ■ 5785ch21.qxd 3/31/06 11:20 AM Page 611 CHAPTER 21 ■ BUILDING A BETTER WINDOW WITH SYSTEM.WINDOWS.FORMS612 Given that the total number of types within System.Windows.Forms is well over 100 strong, it would be redundant (not to mention a terrible waste of paper) to list every member of the Windows Forms family. To set the stage for the next several chapters, however, Table 21-1 lists some of the core .NET 2.0 System.Windows.Forms types (consult the .NET Framework 2.0 SDK documentation for full details). Table 21-1. Core Types of the System.Windows.Forms Namespace Classes Meaning in Life Application This class encapsulates the runtime operation of a Windows Forms application. Button, CheckBox, ComboBox, These classes (in addition to many others) correspond to DateTimePicker, ListBox, various GUI widgets. You’ll examine many of these items in LinkLabel, MaskedTextBox, detail in Chapter 23. MonthCalendar, PictureBox, TreeView FlowLayoutPanel, .NET 2.0 now supplies various layout managers that TableLayoutPanel automatically arrange a Form’s controls during resizing. Form This type represents a main window, dialog box, or MDI child window of a Windows Forms application. ColorDialog, OpenFileDialog, These are various standard dialog boxes for common GUI SaveFileDialog, FontDialog, operations. PrintPreviewDialog, FolderBrowserDialog Menu, MainMenu, MenuItem, These types are used to build topmost and context- ContextMenu, MenuStrip, sensitive menu systems. These controls (new to .NET 2.0) ContextMenuStrip allow you to build menus that may contain traditional drop-down menu items as well as other controls (text boxes, combo boxes, and so forth). StatusBar, Splitter, ToolBar, These types are used to adorn a Form with common child ScrollBar, StatusStrip, ToolStrip controls. ■Note In addition to System.Windows.Forms, the System.Windows.Forms.dll assembly defines additional GUI-centric namespaces. For the most part, these additional types are used internally by the Forms engine and/or the designer tools of Visual Studio 2005. Given this fact, we will keep focused on the core System.Windows.Forms namespace. Working with the Windows Forms Types When you build a Windows Forms application, you may choose to write all the relevant code by hand (using Notepad or TextPad, perhaps) and feed the resulting *.vb files into the VB 2005 com- piler using the /target:winexe flag. Taking time to build some Windows Forms applications by hand not only is a great learning experience, but also helps you understand the code generated by the various graphics designers found within various .NET IDEs. To make sure you truly understand the basic process of building a Windows Forms application, the initial examples in this chapter will avoid the use of graphics designers. Once you feel comfort- able with the process of building a Windows Forms application “wizard-free,” you will then leverage the various designer tools provided by Visual Studio 2005. 5785ch21.qxd 3/31/06 11:20 AM Page 612 CHAPTER 21 ■ BUILDING A BETTER WINDOW WITH SYSTEM.WINDOWS.FORMS 613 Building a Main Window by Hand To begin learning about Windows Forms programming, you’ll build a minimal main window from scratch. Create a new folder on your hard drive (e.g., C:\MyFirstWindow) and create a new file within this directory named MainWindow.vb using your text editor of choice. In the world of Windows Forms, the Form class is used to represent any window in your application. This includes a topmost main window in a single-document interface (SDI) application, modeless and modal dialog boxes, and the parent and child windows of a multiple-document interface (MDI) application. When you are interested in creating and displaying the main window in your program, you have two mandatory steps: 1. Derive a new class from System.Windows.Forms.Form. 2. Configure your application’s Main() method to invoke Application.Run(), passing an instance of your Form-derived type as an argument. Given this, update your MainWindow.vb file with the following class definition (note that because our Main() subroutine is within a Class type (not a Module), we are required to define Main() using the Shared keyword): Imports System.Windows.Forms Namespace MyWindowsApp Public Class MainWindow Inherits Form ' Run this application and identify the main window. Shared Sub Main() Application.Run(New MainWindow()) End Sub End Class End Namespace In addition to the always present mscorlib.dll, a Windows Forms application needs to reference the System.dll and System.Windows.Forms.dll assemblies. As you may recall from Chapter 2, the default VB 2005 response file (vbc.rsp) instructs vbc.exe to automatically include these assemblies during the compilation process, so you are good to go. Also recall that the /target:winexe option of vbc.exe instructs the compiler to generate a Windows executable. ■Note Technically speaking, you can build a Windows application at the command line using the /target:exe option; however, if you do, you will find that a command window will be looming in the background (and it will stay there until you shut down the main window). When you specify /target:winexe, your executable runs as a native Windows Forms application (without the looming command window). To compile your VB 2005 code file, open aVisual Studio 2005 command prompt, change to the directory containing your *.vb file, and issue the following command: vbc /target:winexe *.vb Figure 21-1 shows a test run. 5785ch21.qxd 3/31/06 11:20 AM Page 613 CHAPTER 21 ■ BUILDING A BETTER WINDOW WITH SYSTEM.WINDOWS.FORMS614 Figure 21-1. A simple main window à la Windows Forms Granted, the Form is not altogether that interesting at this point. But simply by deriving from Form, you have a minimizable, maximizable, resizable, and closable main window (with a default system-supplied icon to boot!). Unlike other Microsoft GUI frameworks you may have used in the past (Microsoft Foundation Classes, in particular), there is no need to bolt in hundreds of lines of coding infrastructure. Unlike a C-based Win32 API Windows application, there is no need to manu- ally implement WinProc() or WinMain() procedures. Under the .NET platform, those dirty details have been encapsulated within the Form and Application types. Honoring the Separation of Concerns Currently, the MainWindow class defines the Main() method directly within its scope. If you prefer, you may create a dedicated module (I named mine Program) that is responsible for the task of launching the main window, leaving the Form-derived class responsible for representing the window itself: Imports System.Windows.Forms Namespace MyWindowsApp Public Class MainWindow Inherits Form End Class Public Module Program ' Run this application and identify the main window. Sub Main() Application.Run(New MainWindow()) End Sub End Module End Namespace By doing so, you are abiding by an OO design principle termed the separation of concerns. Simply put, this rule of OO design states that a class should be in charge of doing the least amount of work possible. Given that you have refactored the initial class into two unique classes, you have decoupled the Form from the class that creates it. The end result is a more portable window, as it can be dropped into any project without carrying the extra baggage of a project-specific Main() method. 5785ch21.qxd 3/31/06 11:20 AM Page 614 CHAPTER 21 ■ BUILDING A BETTER WINDOW WITH SYSTEM.WINDOWS.FORMS 615 ■Source Code The MyFirstWindow project can be found under the Chapter 21 subdirectory. The Role of the Application Class The Application class defines numerous shared members that allow you to control various low- level behaviors of a Windows Forms application. For example, the Application class defines a set of events that allow you to respond to events such as application shutdown and idle-time processing. In addition to the Run() method, here are some other methods to be aware of: • DoEvents(): Provides the ability for an application to process messages currently in the mes- sage queue during a lengthy operation. • Exit(): Terminates the Windows application and unloads the hosting AppDomain. • EnableVisualStyles(): Configures your application to support Windows XP visual styles. Do note that if you enable XP styles, this method must be called before loading your main win- dow via Application.Run(). The Application class also defines a number of properties, many of which are read-only in nature. As you examine Table 21-2, note that most of these properties represent an application-level trait such as company name, version number, and so forth. In fact, given what you already know about assembly-level attributes (see Chapter 14), many of these properties should look vaguely familiar. Table 21-2. Core Properties of the Application Type Property Meaning in Life CompanyName Retrieves the value of the assembly-level <AssemblyCompany> attribute ExecutablePath Gets the path for the executable file ProductName Retrieves the value of the assembly-level <AssemblyProduct> attribute ProductVersion Retrieves the value of the assembly-level <AssemblyVersion> attribute StartupPath Retrieves the path for the executable file that started the application Finally, the Application class defines various shared events, some of which are as follows: • ApplicationExit: Occurs when the application is just about to shut down. • Idle: Occurs when the application’s message loop has finished processing the current batch of messages and is about to enter an idle state (as there are no messages to process at the current time). • ThreadExit: Occurs when a thread in the application is about to terminate. If the exiting thread is the main thread of the application, ThreadExit is fired before the ApplicationExit event. Fun with the Application Class To illustrate some of the functionality of the Application class, let’s enhance your current MainWindow to perform the following: • Reflect over select assembly-level attributes. • Handle the shared ApplicationExit event. 5785ch21.qxd 3/31/06 11:20 AM Page 615 [...]... checks the current state of the modifier keys (Shift, Ctrl, and Alt) and returns the state in a Keys type MouseButtons This shared property checks the current state of the mouse buttons (left, right, and middle mouse buttons) and returns this state in a MouseButtons type TabIndex, TabStop These properties are used to configure the tab order of the control Opacity This property determines the opacity of the. .. this project whatever you desire (for example, MyTesterWindowsApp) Figure 21-6 The Visual Studio 2005 Windows Application project Once the project has loaded, you will no doubt notice the Forms designer, which allows you to build a UI by dragging controls/components from the Toolbox (see Figure 21 -7) and configuring their properties and events using the Properties window (see Figure 21-8) 6 27 578 5ch21.qxd... SYSTEM.WINDOWS.FORMS of the Properties window), locate the event you are interested in handling, and type in the name to be used as an event handler (or simply double-click the event to generate a default name of the form ControlName_EventName) ■ Note The “lighting bolt button” approach to handling events is new to Visual Basic 2005 If you would rather make use of the drop-down list boxes supported by a * .vb code... to mouse activity The KeyUp and KeyDown events work in conjunction with the KeyEventHandler delegate, which can point to any method taking an object as the first parameter and KeyEventArgs as the second: Sub MyKeyboardHandler(ByVal sender As Object, ByVal e As KeyEventArgs) KeyEventArgs has the members of interest shown in Table 21 -7 Table 21 -7 Properties of the KeyEventArgs Type Property Meaning in... with the KeyEventArgs type, which contains details regarding the current keypress, and so forth In any case, if you now recompile and run the application, you will find your message box appears upon the termination of the application ■ Source Code The AppClassExample project can be found under the Chapter 21 subdirectory The Anatomy of a Form Now that you understand the role of the Application type, the. .. MouseEventArgs) Handles Me.MouseDown ' Add code for MouseDown event End Sub End Class Beyond these OnXXX() methods, here are a few other methods provided by the Control class to be aware of: • Hide(): Hides the control and sets the Visible property to False • Show(): Shows the control and sets the Visible property to True • Invalidate(): Forces the control to redraw itself by sending a Paint event To be sure, the. .. simply a shortcut to selecting a specific item in the Properties window) For this example, you’ll ignore the options of the inline editor and stay focused on the design of the menu system To begin, select the MenuStrip control on the designer and define a standard File ➤ Exit menu by typing in the names within the Type Here prompts, as shown in Figure 21-14 578 5ch21.qxd 3/31/06 11:20 AM Page 635 CHAPTER... MenuStrip The goal here is to allow the user to enter the name of a color (red, green, pink, etc.) that will be used to set the BackColor property of the Form First, handle the LostFocus event for the new ToolStripTextBox member variable (as you would guess, this event fires when the TextBox within the ToolStrip is no longer the active UI element) Within the event handler, you will extract the string... application Designing the Menu System To begin, create a new Windows Forms application project named StatusStripApp Place a MenuStrip control onto the Forms designer and build the two menu items (File ➤ Exit and Help ➤ About) Once you have done so, handle the Click and MouseHover events for each subitem (Exit and About) using the Properties window The implementation of the File ➤ Exit Click event handler will... list boxes supported by a * .vb code file to handle events, you are free to do so Simply pick the item you wish to interact with in the left drop-down list box and the event you wish to handle from the right drop-down list box Assuming you have handled the Click event for the Button control, you will find that the MainForm .vb file contains the following event handler: Public Class MainForm Private Sub . (see Figure 20 -11), click the Start link to load and run the binary. Figure 20 - 10. Establishing the identity of the CarService 578 5ch 20. qxd 3/31 /06 11:14 AM Page 6 07 CHAPTER 20 ■ THE .NET REMOTING. (without the looming command window). To compile your VB 20 05 code file, open aVisual Studio 20 05 command prompt, change to the directory containing your * .vb file, and issue the following command: vbc. type). 578 5ch 20. qxd 3/31 /06 11:14 AM Page 6 10 Building a Better Window with System.Windows.Forms If you have read through the previous 20 chapters, you should have a solid handle on the VB 20 05 programming

Ngày đăng: 12/08/2014, 23:21

Từ khóa liên quan

Tài liệu cùng người dùng

Tài liệu liên quan