Advertisement
Guest User

Untitled

a guest
Mar 1st, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. <ListBox Name="lbInstalledFonts" VerticalContentAlignment="Center" DisplayMemberPath="Name" ItemsSource="{Binding Source={new System.Drawing.Text.InstalledFontCollection().Familes}}" />
  2.  
  3. <Window x:Class="HelpStackOverflow.MainWindow"
  4. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  5. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  6. xmlns:drawing="clr-namespace:System.Drawing.Text;assembly=System.Drawing"
  7. Title="MainWindow" Height="350" Width="525">
  8. <Window.Resources>
  9. <drawing:InstalledFontCollection x:Key="InstalledFontCollection" />
  10. </Window.Resources>
  11. <Grid>
  12. <ListBox Name="lbInstalledFonts"
  13. VerticalContentAlignment="Center"
  14. DisplayMemberPath="Name"
  15. ItemsSource="{Binding Source={StaticResource InstalledFontCollection}, Path=Families}" />
  16. </Grid>
  17. </Window>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement