使用基於文字的應用程式時,通常需要將資料複製到剪貼簿,以便將其貼上到其他地方。在 C# 中,根據應用程式的類型,有不同的複製資料的機制。
在 Windows 窗體和 WPF 應用程式中,Clipboard 類別可用於存取系統剪貼簿。要將特定字串複製到剪貼簿,請使用SetText() 方法:
Clipboard.SetText("Hello, clipboard");
對於控制台應用程序,需要添加對System.Windows.Forms的引用集會。使用以下命名空間宣告並確保 Main 方法標示為 [STAThread] 屬性:
using System.Windows.Forms; [STAThread] static void Main(string[] args) { Clipboard.SetText("Hello, clipboard"); }
要複製文字方塊的內容,請使用 TextBox .Copy()方法或檢索文字並設定剪貼簿value:
Clipboard.SetText(txtClipboard.Text);
以上是C# 如何將資料複製到剪貼簿?的詳細內容。更多資訊請關注PHP中文網其他相關文章!