2013-04-07 48 views
-3

如何在WPF程序執行此如何做到這一點編程方式在WPF

  1. 提交申請 提交請求到服務器。
+0

目前還不清楚你想要做什麼。你可以添加更多的細節? – mydogisbox 2013-04-07 13:20:31

+0

對於正在編輯的人員,請不要更改問題的內容。這個問題不是關於XAML的。 – mydogisbox 2013-04-07 13:24:14

回答

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; 
+0

我認爲之前編輯的問題改變了意思。不幸的是,這意味着這個答案不能回答這個問題。 – mydogisbox 2013-04-07 13:23:24

+0

你是對的... – user1064519 2013-04-07 13:27:05