public void SetDisplay()

in src/CognitiveKioskUWP/Controls/ObjectBox.xaml.cs [27:33]


        public void SetDisplay(string text, Brush background = null)
        {
            textItemName.Text = text;

            if (background != null)
                gridMain.Background = background;
        }