스타일 가이드 수정 중

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

@@ -14,8 +14,8 @@
<!-- Code Sample -->
<VisualElement class="utk-code-sample-container">
<utk:UTKCodeBlock title="C#" code="// 정보 메시지&#10;var infoBox = new UTKHelpBox() {&#10; Message = &quot;이 기능은 베타 버전입니다.&quot;,&#10; messageType = HelpBoxMessageType.Info&#10;};&#10;&#10;// 경고 메시지&#10;var warningBox = new UTKHelpBox() {&#10; Message = &quot;주의: 되돌릴 수 없습니다.&quot;,&#10; messageType = HelpBoxMessageType.Warning&#10;};&#10;&#10;// 오류 메시지&#10;var errorBox = new UTKHelpBox() {&#10; Message = &quot;오류: 파일을 찾을 수 없습니다.&quot;,&#10; messageType = HelpBoxMessageType.Error&#10;};" />
<utk:UTKCodeBlock title="UXML" code="&lt;!-- 정보 --&gt;&#10;&lt;utk:UTKHelpBox text=&quot;정보 메시지입니다.&quot; message-type=&quot;Info&quot; /&gt;&#10;&#10;&lt;!-- 경고 --&gt;&#10;&lt;utk:UTKHelpBox text=&quot;경고 메시지입니다.&quot; message-type=&quot;Warning&quot; /&gt;&#10;&#10;&lt;!-- 오류 --&gt;&#10;&lt;utk:UTKHelpBox text=&quot;오류 메시지입니다.&quot; message-type=&quot;Error&quot; /&gt;" />
<utk:UTKCodeBlock name="code-csharp" title="C#" />
<utk:UTKCodeBlock name="code-uxml" title="UXML" />
</VisualElement>
</VisualElement>
</UXML>

View File

@@ -66,8 +66,8 @@
<!-- Code Sample -->
<VisualElement class="utk-code-sample-container">
<utk:UTKCodeBlock title="C#" code="// 기본 라벨&#10;var label = new UTKLabel();&#10;label.Text = &quot;안녕하세요&quot;;&#10;label.Size = UTKLabel.LabelSize.Body1;&#10;label.Variant = UTKLabel.LabelVariant.Primary;&#10;&#10;// 제목 스타일&#10;var title = new UTKLabel();&#10;title.Text = &quot;제목&quot;;&#10;title.Size = UTKLabel.LabelSize.Heading1;&#10;title.IsBold = true;&#10;&#10;// Material Icon과 텍스트 함께 사용&#10;var iconLabel = new UTKLabel(&quot;설정&quot;, UTKMaterialIcons.Settings);&#10;&#10;// Material Icon만 사용&#10;var iconOnly = new UTKLabel(UTKMaterialIcons.Home);" />
<utk:UTKCodeBlock title="UXML" code="&lt;!-- 기본 라벨 --&gt;&#10;&lt;utk:UTKLabel text=&quot;일반 텍스트&quot; /&gt;&#10;&#10;&lt;!-- 제목 --&gt;&#10;&lt;utk:UTKLabel text=&quot;제목&quot; size=&quot;H1&quot; is-bold=&quot;true&quot; /&gt;&#10;&#10;&lt;!-- 보조 텍스트 --&gt;&#10;&lt;utk:UTKLabel text=&quot;설명&quot; size=&quot;Caption&quot; variant=&quot;Secondary&quot; /&gt;&#10;&#10;&lt;!-- Material Icon과 텍스트 --&gt;&#10;&lt;utk:UTKLabel text=&quot;설정&quot; material-icon=&quot;settings&quot; /&gt;&#10;&#10;&lt;!-- 아이콘 오른쪽 배치 --&gt;&#10;&lt;utk:UTKLabel text=&quot;다음&quot; material-icon=&quot;arrow_forward&quot; icon-placement=&quot;Right&quot; /&gt;" />
<utk:UTKCodeBlock name="code-csharp" title="C#" />
<utk:UTKCodeBlock name="code-uxml" title="UXML" />
</VisualElement>
</VisualElement>
</UXML>