mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Add clipboard function
This commit is contained in:
parent
365f7e73c8
commit
702a1513b2
1 changed files with 6 additions and 1 deletions
|
|
@ -115,6 +115,11 @@ namespace Flow.Launcher
|
||||||
ShellCommand.Execute(startInfo);
|
ShellCommand.Execute(startInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void CopyToClipboard(string text)
|
||||||
|
{
|
||||||
|
Clipboard.SetText(text);
|
||||||
|
}
|
||||||
|
|
||||||
public void StartLoadingBar() => _mainVM.ProgressBarVisibility = Visibility.Visible;
|
public void StartLoadingBar() => _mainVM.ProgressBarVisibility = Visibility.Visible;
|
||||||
|
|
||||||
public void StopLoadingBar() => _mainVM.ProgressBarVisibility = Visibility.Collapsed;
|
public void StopLoadingBar() => _mainVM.ProgressBarVisibility = Visibility.Collapsed;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue