Reputation: 595
We are writing a DLL that adds functionality to an existing program written in Visual Studio 2010. It hooks into the existing application to load the DLL and represent its window as a tab in the main application.
I would like the tab to blend in with the existing application, but nowhere is it stated what font the application uses. We do not have the source code to the application.
How would I find this out?
Upvotes: 0
Views: 112
Reputation: 4546
A tool such as WPF Snoop will allow you to examine all properties (including font family) for any visual element in a WPF application.
Upvotes: 3
Reputation: 5266
Use What The Font. You upload an image of your font and it will tell you likely fonts used.
Upvotes: 0