2012-03-16 103 views
0

我想從MainWindow.xaml.cs文件更改運行時的源屬性。我現在的代碼顯示在這裏。在運行時更改WPF源代碼

   <controls:StartVideoCallButton Name="accountString" Source="sip:[email protected]" Height="75" Width="314" Background="#FFC7C7C7"></controls:StartVideoCallButton> 
+0

它不起作用accountString.Source =? – Klaus78 2012-03-16 09:35:32

回答

2

這個工作對我來說:

accountString.Source = "sip:[email protected]"; 

或者你可以使用MVVM模式的UI從業務邏輯中分離出來的源屬性綁定 - 這是WPF首選的方法應用程式