bloxstrap/Bloxstrap/Utility/Rendering.cs
pizzaboxer 5ef20a79c7
Add Fluent MessageBoxes
thats a lot of updated files huh
2023-06-29 17:54:05 +01:00

25 lines
736 B
C#

using System.Globalization;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
namespace Bloxstrap.Utility
{
static class Rendering
{
public static double GetTextWidth(TextBlock textBlock)
{
return new FormattedText(
textBlock.Text,
CultureInfo.CurrentCulture,
FlowDirection.LeftToRight,
new Typeface(textBlock.FontFamily, textBlock.FontStyle, textBlock.FontWeight, textBlock.FontStretch),
textBlock.FontSize,
Brushes.Black,
new NumberSubstitution(),
VisualTreeHelper.GetDpi(textBlock).PixelsPerDip
).Width;
}
}
}