Exemplo n.º 1
0
        public new void Setup() => Schedule(() =>
        {
            SelectedRoom.Value = new Room();

            Child = settings = new TestRoomSettings(SelectedRoom.Value)
            {
                RelativeSizeAxes = Axes.Both,
                State            = { Value = Visibility.Visible }
            };
        });
Exemplo n.º 2
0
        public new void Setup() => Schedule(() =>
        {
            settings = new TestRoomSettings
            {
                RelativeSizeAxes = Axes.Both,
                State            = { Value = Visibility.Visible }
            };

            Child = settings;
        });
Exemplo n.º 3
0
        public void Setup() => Schedule(() =>
        {
            room     = new Room();
            settings = new TestRoomSettings(room)
            {
                RelativeSizeAxes = Axes.Both,
                State            = Visibility.Visible
            };

            Child = settings;
        });