PropertyItem 수정 중

This commit is contained in:
김형인
2026-02-05 23:26:35 +09:00
parent acd430c5d7
commit c1f5d2c208
3 changed files with 48 additions and 4 deletions

View File

@@ -111,11 +111,16 @@ namespace UVC.Sample.UIToolkit
entries.Add(roBool);
// Int (편집 가능)
entries.Add(new UTKIntPropertyItem("int", "Int", 42, 0, 100, true));
entries.Add(new UTKIntPropertyItem("int", "Int", 42, 0, 100));
// Int (읽기 전용)
var roInt = new UTKIntPropertyItem("int_ro", "Int (RO)", 99, 0, 100, true, isReadOnly: true);
entries.Add(roInt);
entries.Add(new UTKIntPropertyItem("int_ro", "Int (RO)", 99, 0, 100, isReadOnly: true));
// Int (편집 가능)
entries.Add(new UTKIntPropertyItem("int1", "Int", 42, 0, 100, true));
// Int (읽기 전용)
entries.Add(new UTKIntPropertyItem("int1_ro", "Int (RO)", 99, 0, 100, true, isReadOnly: true));
// Int stepper (편집 가능)
entries.Add(new UTKIntPropertyItem("int2", "Int2", 42, 0, 100, false, true));