我是WPF的新手,我試圖製作一個控件,它會在每次打到特定控件時擴展我的表單,直到它達到最多7次。 這是形式: https://i.imgur.com/50tzCSy.png <Border Padding="10">
<StackPanel>
<TextBlock Text="Insert a file or expand to insert more file at onc
我正在爲我的WPF應用程序創建一個自定義控件。這是我的代碼: MainWindow.xaml.cs: public sealed class MainTimer : FrameworkElement
{
public DispatcherTimer Timer = new DispatcherTimer();
public MainTimer()
{
我有一個窗體組合框顯示字符串與數據庫查詢檢索。 當我點擊其中一個組合框時,我會調用ComboBox.Click事件,它會熄滅並執行查詢,並顯示可供選擇的所有可能的值。 這是它開始行動奇怪。我把一份聲明中這樣的代碼: Dim ac As ComboBox = DirectCast(sender, ComboBox)
MsgBox("selected text " & ac.SelectedText