我正在尝试从复制和粘贴按钮中设置文本框中的输入。基本上我希望有人能够在文本框中键入他们的首字母,然后在已设置的文本框中将这些首字母输入到剪贴板中。
Map
它说首字母我希望texbox输入在那里。
private void AvayaNewInstall(object sender, RoutedEventArgs e)
{
MessageBoxResult result = MessageBox.Show("These FSR notes are to be
used when there is no history of" +
"EnergyWise ever being installed at the premise previously.");
Clipboard.SetText(@"NEW INSTALL EW ON:
EMAIL REQUEST FROM: NAME
WIFI AVAILABILITY:
AH LOCATION:
WH LOCATION:
BEST CONTACT NUMBER:
Initials");
}
我很困惑,我会把它放在哪里。如果我把它放在引文之间,它就像我放入的那样,而不是文本框中的内容。