show-notice
hide-notice
Showing posts with label Silverlight. Show all posts
Showing posts with label Silverlight. Show all posts

Wednesday, 17 July 2013

how to set change TextBox border thickness (width) programmatically in silverlight

0 comments
Introduction

I will explain how to set change TextBox border thickness (width) programmatically
in silverlight.

how to set change ComboBox border color using BorderBrush programmatically in silverlight

0 comments
Introduction

I will explain how to set change ComboBox border color using BorderBrush programmatically in silverlight.

how to set change ComboBox font text size programmatically in silverlight

0 comments
Introduction

I will explain how to set change ComboBox font text size programmatically in silverlight.

how to set change ComboBox FontFamily programmatically in silverlight

0 comments
Introduction

I will explain how to set change ComboBox FontFamily programmatically in silverlight.

how to set change ComboBox Foreground (font text color) programmatically in silverlight

0 comments
Introduction

I will explain how to set change ComboBox Foreground (font text color) programmatically in silverlight.

how to use ComboBox SelectionChanged event in silverlight

0 comments
Introduction

I will explain how to use ComboBox SelectionChanged event in silverlight 

how to insert ComboBox Item at list first (list prepend) programmatically in silverlight

0 comments
Introduction

I will explain how to insert ComboBox Item at list first (list prepend) programmatically in silverlight

how to create a label in silverlight

0 comments
Introduction

I will explain how to create a label in silverlight.

how to create ellipse in silverlight

0 comments
Introduction

I will explain how to create ellipse in silverlight.

how to create rounded corner border in silverlight

0 comments
Introduction

I will explain how to create rounded corner border in silverlight 

how to create rounded corner rectangle in silverlight

0 comments
Introduction

I will explain how to create rounded corner rectangle in silverlight.

how to use Slider in silverlight

0 comments
Introduction

I will explain how to use Slider in silverlight.

Tuesday, 16 July 2013

Line, Rectangle, and Ellipse Geometries in Silverlight

0 comments
Introduction

I will explain Line, Rectangle, and Ellipse Geometries in Silverlight 
Description

The LineGeometry, RectangleGeometry, and EllipseGeometry classes map directly to the Line, Rectangle, and Ellipse shapes that you learned about in the first half of this chapter. For example, you can convert this markup that uses the Rectangle element:

Combining Shapes with GeometryGroup in Silverlight

0 comments
Introduction  

I will explain Combining Shapes with GeometryGroup in Silverlight Description

Description


The simplest way to combine geometries is to use the GeometryGroup and nest the other Geometry-derived objects inside. Here’s an example that places an ellipse next to a square.

GeometryGroup in silverlight

0 comments
Introduction

I will explain GeometryGroup in silverlight.


Description

The GeometryGroup becomes more interesting when your shapes intersect. Rather than simply treating your drawing as a combination of solid shapes, the GeometryGroup uses its FillRule property (which can be EvenOdd or Nonzero, as described earlier) to decide what shapes to fill. Consider what happens if you alter the markup shown earlier like this, placing the ellipse over the square:

Straight Lines in Silverlight

0 comments
Introduction

I will explain  Straight Lines in Silverlight.

Description

It’s easy enough to create simple lines using the LineSegment and PathGeometry classes. You simply set the StartPoint and add one LineSegment for each section of the line. The LineSegment.Point property identifies the end point of each segment.

Creates the gentle arc in Silverlight

0 comments
Introduction

i will explain Creates the gentle arc in Silverlight


Description

Arcs are a little more interesting than straight lines. You identify the end point of the line using the ArcSegment.Point property, just as you would with a LineSegment. However, the PathFigure draws a curved line from the starting point (or the end point of the previous segment) to the end point of your arc. This curved connecting line is actually a portion of the edge of an ellipse.

Shows a classic B?zier curve in silverlight

0 comments
Introduction

i will explain Shows a classic B?zier curve in silverlight.

Description


Bézier curves connect two line segments using a complex mathematical formula that incorporates two control points that determine how the curve is shaped. Bézier curves are an ingredient in virtually every vector drawing application ever created because they’re remarkably flexible. Using nothing more than start point, end point, and two control points, you can create a surprisingly wide variety of smooth curves (including loops).  Shows a classic Bézier curve. Two small circles indicate the control points, and a dashed line connects each control point to the end of the line it affects the most.


The Geometry Mini-Language.

0 comments
Introduction

i will explain The Geometry Mini-Language.


Description


he geometries you’ve seen so far have been relatively concise, with only a few points. More complex geometries are conceptually the same but can easily require hundreds of segments. Defining each line, arc, and curve in a complex path is extremely verbose and unnecessary—after all, it’s likely that complex paths will be generated by a design tool rather than written by hand, so the clarity of the markup isn’t all that important.


Design by Gohilinfotech | www.gohilinfotech.blogspot.com