-3

如何在 wpf 中以编程方式执行此操作

  1. 提交请求 向服务器提交请求。
4

1 回答 1

0
 ToolTip toolTip = new ToolTip();
 StackPanel stack = new StackPanel();
 stack.Children.Add(new TextBlock() { Text = "Submit Request", FontWeight = FontWeights.Bold });
 stack.Children.Add(new TextBlock() { Text = "Submits the request to the server." });
 toolTip.Content = stack;
于 2013-04-07T13:22:13.220 回答