PropertyItem 수정 중
This commit is contained in:
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user