Click here to Skip to main content
15,895,142 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to create barcode ?
if i am use code128.ttf font file then how to add new font family in wpf project and how to use ?
I want to generate barcode without any third party resource.
Posted

1 solution

Add your font to the project. Make sure that its Build Action is "Resource".
Then use it in code by referencing to it with relative path (use font name after hash).

If font added to the root of the project:
<TextBlock FontFamily="./#code128"></TextBlock>


If font added to the Resources sub-folder of the project:
<TextBlock FontFamily="./Resources/#code128"></TextBlock>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900