Using a DataGrid, DataView, and DataFilter

In addition to basic building blocks like labels and text boxes, a simple user interface can also use controls that hold several pieces of information at once. The DataGrid is the most widely-used of these classes; it presents information in a grid format that is easy and intuitive for most users. Two related classes, the DataView and the DataFilter, can be used to add remarkable power to your application, without making your user interface complicated.

The bottom half of the sample application form holds a DataGrid. It's not there just to show how docking works, but also to demonstrate some of the purposes to which you can put this very powerful control. A full treatment of how to get data into a datagrid is in Chapter 11, "Writing a Data Layer in Managed C++," but this chapter includes a very neat shortcut using XML.

SHOP TALK: USING XML IN PROTOTYPES WITHOUT A DATA LAYER

I've used these shortcut techniques to create quick and impressive prototypes without writing a data layer. Keep that in mind as you read how I use a file of XML to fill the DataGrid. It doesn't take long to create the user interface, and to type up a file of XML. The user sees how the application will flow, and can even preview simple query capabilities. Keep this in mind the next time you have to toss something together in less than a day for a big presentation.


Creating XML, Schemas, and Typed Datasets

The DataGrid control displays data in a grid format. In order to do that, it needs some data. In this chapter, you'll use a shortcut to load some static data into the grid so that you can explore the properties of the DataGrid control and get used to working with it.

To get some data for the DataGrid to work with, start by creating a file of XML. You can create an empty one like this: Right-click the project in Solution Explorer and choose Add, Add New Item. On the Add New Item dialog box, choose XML File and name it People. Click Open. Visual Studio will create an almost-empty file and open it with the editor. You can then type some sample XML. Listing 4.2 shows some XML that will be used in this section to populate the DataGrid. If you type this in yourself, or open the sample application, you'll notice the syntax coloring provided by Visual Studio when you edit XML. Syntax coloring simplifies working with complicated files.

Listing 4.2 People.xmlSample Data in XML
 <?xml version=" 1.0"  encoding=" utf-8" ?> <members>     <member>         <first>Kate</first>         <last>Gregory</last>         <phone>705 789 1234</phone>         <SIN>123 456 789</SIN>     </member>     <member>         <first>Brian</first>         <last>Gregory</last>         <phone>705 678 2345</phone>         <SIN>987 654 321</SIN>     </member>     <member>         <first>Todd</first>         <last>Green</last>         <phone>416 345 6789</phone>         <SIN>123 654 987</SIN>     </member> </members> 

Working with XML is well-supported throughout the .NET Framework. Both Visual Studio and the Base Class Library have a wide variety of tools and methods that are founded on XML. For example, if you right-click in the editor while editing the new file, people.xml , you can choose Create Schema. This will set Visual Studio to work creating an XML schema that matches the sample XML you provided.

After you generate the schema, flip back to the file of XML. You'll notice that Visual Studio edited it to reflect the name and location of the schema. What's more, once a file of XML has an associated schema, you get Intellisense when you edit it. It closes tags as you open them (if you type <member> , it will type </member> ) and provides a drop-down menu of the only elements that belong where you are typing, as in Figure 4.11.

Figure 4.11. When a file of XML has a schema, you get Intellisense while editing it in Visual Studio.

graphics/04fig11.jpg

Once you have a schema, you can use it to generate a very useful class called a typed dataset . This is a class that inherits from the Dataset class in the System::Data sub-namespace (discussed more fully in Chapter 11) and is typically used to hold the results from a query of the database. By default, Visual Studio .NET 2003 generates a typed dataset whenever you generate a schema, and regenerates the typed dataset every time you save the schema.

What good is a typed dataset? It's the definition of a class. An actual instance of that class can hold data from a database (or elsewhere as you'll see shortly) and can then be used as the data source for a control that knows how to display data. A perfect example of such a control is a DataGrid.

Connecting a DataGrid to a DataSet

Here's how to hook up the DataGrid in the sample application so that it displays the contents of the sample file of XML:

  1. Open the form in the designer and make sure the toolbox is visible and pinned.

  2. Click the Data tab in the toolbox to display a completely different set of controls.

  3. Drag a DataSet onto the form and let go. The Add Dataset wizard will appear.

  4. The wizard offers you a choice of typed or untyped dataset, and for a typed dataset, a drop-down list of all those you have defined in the project. Because you only have one typed dataset in this project, click OK to accept the suggestion of using SimpleForm.members .

  5. The dataset appears in the designer just below the form. That makes it simple to select it so that you can set properties with the Properties window if necessary.

  6. Select the DataGrid, and in the Properties window, set the Data Source property to members1.member the member table of the member's DataSet instance that was created when you dragged the DataSet onto the form. Immediately the headings of the DataGrid change to reflect the field names in the table. These field names came from the XML when the data set was generated.

  7. Open the code for the form, and edit the constructor so it reads like this:

     
     Form1(void) {    InitializeComponent();    members1->ReadXml("people.xml"); } 

Build and run the project, and you should see something like Figure 4.12: The DataGrid displays the contents of the XML file in an intuitive grid. You can resize the columns with the mouse, click any column heading to sort by the column, and if you resize the application so that it's narrower than the DataGrid, scroll bars will appear automatically. The only thing that's a bit of a cheat here is filling the DataGrid by just reading in XML from a file. Normally, you would use a data layer to provide a DataSet for the grid to display.

Figure 4.12. The DataGrid displays the contents of the XML file with very little coding effort.

graphics/04fig12.gif

Working with a Data View

For simple filtering of records, a DataView is hard to beat. You bring all your results from the database once, and keep them in a data set. Then instead of hooking the data grid directly to the data set, you hook it to a data view, and you hook the data view to the data set. The data view has a Filter property that you can use to control which records the data grid displayswithout going back to the database over and over again. This Filter property holds an instance of the DataFilter class.

Here's how to change the sample application to use a data view:

  1. In the Design view, select the Data tab on the toolbox and drag a DataView into the tray area where member1 already appears.

  2. Select this new non-visual control and use the Properties window to change its Table property to members1.member . (Click the + next to members1 to expand it and show the member table.)

  3. Select the data grid and use the Properties window to change its Data Source property from members1.member to dataView1 . (These property changes are quick and easy if you use the drop-down lists, which offer you lists of the possible controls in the solution that could serve as a data source.)

  4. Drag on a text box and a button just above the data grid (you might have to resize the data grid a little to make room). Remove the default text from the text box, change the button text to Last Name Filter, and then resize the button so that all the text shows. Change the background color of the button to Control on the System tab of the color dialog box that appears in the Properties window when you select the BackColor property. The revised interface should resemble Figure 4.13.

    Figure 4.13. Add a text box and button to control the data grid's data source.

    graphics/04fig13.jpg

  5. Double-click the button to add and edit a handler for it.

  6. Edit the handler to read like this:

     
     private: System::Void button2_Click(System::Object *  sender,                                     System::EventArgs *  e) {    String* filter = String::Concat(S" last LIKE '*", textBox2->Text);    filter = String::Concat(filter,S" *'");    dataView1->set_RowFilter(filter); } 

The text for the filter builds a selection clause around the context of textBox2 . For example, if textBox2 held the letter G, the filter string would be "last LIKE '*G*'" . This instructs the data view to give the data grid only records for which the column called last contains a G. If you want the text box to mean "the column should start with this string", remove the first * from the filter string.

If you've been coding along, try running the sample application now. You can sort the data grid, restrict it to displaying only certain rows by entering a last name or part of a last name in the text box and clicking the button, and generally get a good feel for the way a real application (one with real database technology behind it) would work. In just a few lines of code, and a little dragging and dropping, you can create very realistic prototypes. You'll be seeing more of data grids and data sets in Chapter 11, but don't think you have to know all about databases to use them: Their power is in their simplicity for the user interface designer.



Microsoft Visual C++. NET 2003 Kick Start
Microsoft Visual C++ .NET 2003 Kick Start
ISBN: 0672326000
EAN: 2147483647
Year: 2002
Pages: 141
Authors: Kate Gregory

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net