/// <inheritdoc />
        public override void Initialize(LayoutElementsContainer layout)
        {
            _label             = layout.ClickableLabel(GetName(Culture)).CustomControl;
            _label.RightClick += ShowPicker;
            var button = new Button
            {
                Width  = 16.0f,
                Text   = "...",
                Parent = _label,
            };

            button.SetAnchorPreset(AnchorPresets.MiddleRight, false, true);
            button.Clicked += ShowPicker;
        }