WPF

Windows Presentation Foundation

Using custom font in WPF application

Normal 0 false false false MicrosoftInternetExplorer4 /* Style Definitions */ table.MsoNormalTable {mso-style-name:Standardowy; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-parent:""; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-para-margin:0in; mso-para-margin-bottom:.000... mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Times New Roman"; mso-ansi-language:#0400; mso-fareast-language:#0400; mso-bidi-language:#0400;} INTRODUCTION Some time ago I...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Introduction to type converters

Type converters are one of the coolest and one of the most usefull features of XAML (Extensible Application Markup Language). They do not only speed up the development process and make the code much more readable. They also enable many other XAML features that would be impossible to accomplish otherwise. Let`s begin with simple example to demonstrate the idea that stands behind type converters. Suppose we have a simple grid container: <Grid Height="300" Width="300"> </Grid> If we would...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati