mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 08:37:19 +08:00
23 lines
391 B
C#
23 lines
391 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using CPF.Drawing;
|
|||
|
|
|||
|
namespace CPF.Skia
|
|||
|
{
|
|||
|
public class SkiaFont : IDisposable
|
|||
|
{
|
|||
|
public string FontFamily { get; set; }
|
|||
|
|
|||
|
public float FontSize { get; set; }
|
|||
|
|
|||
|
public FontStyles FontStyle { get; set; }
|
|||
|
|
|||
|
public void Dispose()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|