mirror of
				https://gitee.com/csharpui/CPF.git
				synced 2025-11-01 00:46:56 +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()
 | |
|         {
 | |
|             
 | |
|         }
 | |
|     }
 | |
| }
 | 
