2026-08-27 10:57:58 -06:00
|
|
|
using System;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
|
|
|
namespace Pulsar.Common.Helpers
|
|
|
|
|
{
|
|
|
|
|
public static class ClipboardHelper
|
|
|
|
|
{
|
|
|
|
|
public static void SetClipboardTextSafe(string text)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
Clipboard.SetText(text);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|