스타일 가이드 적용 완료. UTKCOlorPicker, UTKDatePicker 확인해야 함

This commit is contained in:
logonkhi
2026-01-12 20:16:17 +09:00
parent 6ae48ff30e
commit e1f2ac5b02
31 changed files with 1854 additions and 660 deletions

View File

@@ -12,10 +12,6 @@ namespace UVC.UIToolkit
[UxmlElement]
public partial class UTKTab : Tab, IDisposable
{
#region Constants
private const string USS_PATH = "UIToolkit/Tab/UTKTab";
#endregion
#region Fields
private bool _disposed;
private bool _isEnabled = true;
@@ -54,13 +50,6 @@ namespace UVC.UIToolkit
public UTKTab() : base()
{
UTKThemeManager.Instance.ApplyThemeToElement(this);
var uss = Resources.Load<StyleSheet>(USS_PATH);
if (uss != null)
{
styleSheets.Add(uss);
}
SetupStyles();
SubscribeToThemeChanges();
}