private void CopyToClipboard(string param)
        {
            if (Selected == null)
            {
                return;
            }

            string text = null;

            if (param == "name")
            {
                text = Selected.Name;
            }
            else if (param == "value")
            {
                text = Selected.StringValue;
            }
            if (text == null)
            {
                return;
            }

            Clipboard.SetText(text);
            _dialogsHelper.ShowNotification("Значение скопировано в буфер обмена");
        }