- Home
- Products
- Integration
- Tutorial
- Barcode FAQ
- Purchase
- Company
The Properties Pane in .NET
The Properties Pane Generate Code39 In .NET Using Barcode drawer for .NET Control to generate, create Code 3 of 9 image in .NET applications. www.OnBarcode.comRead USS Code 39 In Visual Studio .NET Using Barcode recognizer for Visual Studio .NET Control to read, scan read, scan image in VS .NET applications. www.OnBarcode.comYou can use the Properties pane to manage all the visual aspects of a particular element. Because XAML elements have many configurable properties, this pane gives you two very useful shortcuts. Bar Code Printer In VS .NET Using Barcode drawer for .NET framework Control to generate, create bar code image in VS .NET applications. www.OnBarcode.comBarcode Decoder In .NET Using Barcode recognizer for .NET Control to read, scan read, scan image in Visual Studio .NET applications. www.OnBarcode.comPart I Introducing Silverlight 3
Code 3/9 Creation In Visual C#.NET Using Barcode maker for VS .NET Control to generate, create ANSI/AIM Code 39 image in .NET applications. www.OnBarcode.comCreate Code 3/9 In .NET Using Barcode generation for ASP.NET Control to generate, create ANSI/AIM Code 39 image in ASP.NET applications. www.OnBarcode.comThe first shortcut is provided by the division of the Properties pane into several classifications that typically provide access to the following visual aspects of elements: Brushes With brushes, you can set fill and stroke options as well as use an opacity mask on an element. 4, Silverlight XAML Basics, describes in a lot more detail how brushes are used. Appearance In the Appearance section, you can set extended appearance properties for your object. Note that the available appearance properties change drastically based on the object that you are currently editing. So, for example, if you are editing a Rectangle element, in the Appearance section of the Properties pane you can set characteristics such as the corner radii, but if you are editing a Button element that doesn t have corner radii, this option is not available. Layout In the Layout section, you can edit the various layout options for your object, such as Width, Height, and Alignment options. You can also use layout options to change the position of an object in a grid if the layout is on a grid. Common Properties The Common Properties section effectively contains the properties that are common across a type of object. So, for example, typically you edit the common properties for controls that are distinct from shapes here. These options can be very difficult to use, depending on the object that you are editing. For example, if you are editing a control, a common property is its tab index, but if you are editing a shape, the tab index is not available. Transform In the Transform section, you can edit the RenderTransform of your object. This defines how the object can be manipulated by the rendering system. Transformations are covered in detail in 5, XAML Transformation and Animation. Miscellaneous The Miscellaneous section is a catch-all location for properties that aren t available under any of the other classifications. Printing Code 3 Of 9 In Visual Basic .NET Using Barcode generator for .NET framework Control to generate, create USS Code 39 image in .NET framework applications. www.OnBarcode.comDraw QR Code In .NET Using Barcode creation for Visual Studio .NET Control to generate, create QR image in VS .NET applications. www.OnBarcode.comDo note that these classification panes are further subdivided. You ll notice that many of them have an arrow at the bottom of the pane that you can use to expand and contract the properties view. With this feature, you can hide lesser-used properties until you need them. The second shortcut in the Properties pane is its Search feature, which you can use to search for a particular property. For example, if you know you want to edit some features of a font but don t know the name of the property itself, you can type font into the search engine, and the classifications and available properties will be filtered so that only those that have to do with fonts are displayed. This is done immediately upon a keystroke, so if you are searching for a font property in this example, as soon as you type fo you will see available properties Code 3 Of 9 Encoder In .NET Framework Using Barcode generation for Visual Studio .NET Control to generate, create Code-39 image in .NET framework applications. www.OnBarcode.comCreate Code128 In .NET Framework Using Barcode encoder for Visual Studio .NET Control to generate, create ANSI/AIM Code 128 image in .NET framework applications. www.OnBarcode.com 2 Using Expression Blend with Silverlight
Create Barcode In .NET Using Barcode creation for .NET framework Control to generate, create bar code image in Visual Studio .NET applications. www.OnBarcode.comIdentcode Maker In VS .NET Using Barcode printer for .NET Control to generate, create Identcode image in .NET framework applications. www.OnBarcode.comdisplayed such as foreground and rendertransform as well as the font properties, as shown in the list of properties displayed in Figure 2-10. EAN 13 Printer In None Using Barcode generation for Office Excel Control to generate, create UPC - 13 image in Microsoft Excel applications. www.OnBarcode.comPDF 417 Decoder In Java Using Barcode recognizer for Java Control to read, scan read, scan image in Java applications. www.OnBarcode.comFIGURE 2-10 Using the Properties pane.
Make QR In Objective-C Using Barcode generator for iPhone Control to generate, create QR-Code image in iPhone applications. www.OnBarcode.comPaint GS1 - 13 In Java Using Barcode generator for Android Control to generate, create GTIN - 13 image in Android applications. www.OnBarcode.comThe next section looks at how you can use all these tools to build Silverlight applications.
QR Code 2d Barcode Creation In Java Using Barcode generation for Android Control to generate, create QR Code image in Android applications. www.OnBarcode.comPrint Code 128 Code Set C In Java Using Barcode creation for BIRT reports Control to generate, create ANSI/AIM Code 128 image in Eclipse BIRT applications. www.OnBarcode.comUsing Expression Blend to Build Silverlight Applications
Paint UCC.EAN - 128 In Objective-C Using Barcode generation for iPhone Control to generate, create USS-128 image in iPhone applications. www.OnBarcode.comPDF 417 Printer In None Using Barcode encoder for Excel Control to generate, create PDF-417 2d barcode image in Office Excel applications. www.OnBarcode.comYou can use Expression Blend to accomplish the following main design-oriented functions as you put together your application: Organizing the layout Placing and customizing visual elements Placing and customizing controls Designing animations You explore each of these functions of Expression Blend throughout the rest of this chapter.
Part I Introducing Silverlight 3
Layout
In Silverlight, you use special tools to create and organize the layout of your application. Several options are available, and the following subsections look at each of them in turn. Using a Grid
With the Grid layout element, you can lay out elements in a structure that looks like a table. (Do not confuse the Grid layout element with a Grid control that gives you functionality similar to a spreadsheet application.) When using a Grid layout tool, you can specify how your elements are placed by indicating their coordinates with virtual row and column designations in the Grid layout. For example, consider the following XAML: <Grid x:Name="LayoutRoot" Background="White" > <Button Height="38" Margin="104,72,0,0" Width="58" Content="Button"/> <Button Height="24" Margin="210,72,0,0" Width="54" Content="Button"/> <Button Height="49" Margin="0,96,158,0" Width="80" Content="Button"/> <Button Height="54" Margin="297,185,270,0" Width="67" Content="Button"/> <Button Height="33" Margin="104,217,0,213" Width="87" Content="Button"/> </Grid> When rendered, this XAML appears as shown in Figure 2-11.
|
|