Example #1
0
        public void OpenDllFileDialog()
        {
            var path = _fileDialogService.ShowPickFileDialog("Dll files (.dll)|*.dll|Exe files (.exe)|*.exe");

            if (!string.IsNullOrEmpty(path))
            {
                DllPath = path;
            }
        }