스타일 가이드 수정 중

This commit is contained in:
logonkhi
2026-01-23 19:04:12 +09:00
parent 59d473c87b
commit 99f9c3b26d
86 changed files with 3013 additions and 1795 deletions

View File

@@ -17,8 +17,8 @@
<!-- Code Sample -->
<VisualElement class="utk-code-sample-container">
<utk:UTKCodeBlock title="C#" code="// 기본 체크박스&#10;var checkbox = new UTKCheckBox();&#10;checkbox.Text = &quot;약관에 동의합니다&quot;;&#10;checkbox.OnValueChanged += (isChecked) =&gt; Debug.Log($&quot;체크: {isChecked}&quot;);&#10;&#10;// 상태 설정&#10;checkbox.IsChecked = true;&#10;checkbox.IsIndeterminate = true; // 부분 선택 상태" />
<utk:UTKCodeBlock title="UXML" code="&lt;!-- 기본 체크박스 --&gt;&#10;&lt;utk:UTKCheckBox text=&quot;Unchecked&quot; /&gt;&#10;&#10;&lt;!-- 기본값 체크됨 --&gt;&#10;&lt;utk:UTKCheckBox text=&quot;Checked&quot; is-checked=&quot;true&quot; /&gt;&#10;&#10;&lt;!-- 불확정 상태 --&gt;&#10;&lt;utk:UTKCheckBox text=&quot;Indeterminate&quot; is-indeterminate=&quot;true&quot; /&gt;&#10;&#10;&lt;!-- 비활성화 --&gt;&#10;&lt;utk:UTKCheckBox text=&quot;Disabled&quot; is-enabled=&quot;false&quot; /&gt;" />
<utk:UTKCodeBlock name="code-csharp" title="C#" />
<utk:UTKCodeBlock name="code-uxml" title="UXML" />
</VisualElement>
</VisualElement>
</UXML>