compositecollection

    0熱度

    2回答

    我在ItemsSource綁定到一個ObservableCollection <DataGrid ItemsSource="{Binding Items}"> 中的ObservableCollection每個項目也有一個字符串的ObservableCollection一個DataGrid。 其中一列是包含ComboBox的DataGridTemplateColumn。我希望每行的ComboBo

    0熱度

    1回答

    我想在WPF中做一些簡單的事情,但無法找到辦法。 我在DataGrid標題中有一個ComboBox來過濾數據。數據綁定到所有數據的GrouBy聲明。 這些數據顯示了一些複選框XAML代碼: <DataGridTextColumn x:Name="Type" Binding="{Binding TypeOfData, Mode=OneTime}" SortMemb

    1熱度

    1回答

    基本上我想將我在xaml中做的事情轉換爲C#。這涉及到以下問題: Bind a string in xaml to a property 這是爲什麼需要在我的情況下使用的代理服務器: http://www.thomaslevesque.com/2011/03/21/wpf-how-to-bind-to-data-when-the-datacontext-is-not-inherited/ Prox

    0熱度

    1回答

    我有一個TabControl 我跟着選擇here信答案。問題是,在我的情況下,ExistingTabs不是一個ObservableCollection,而是一個ObservableCollection的財產: Public Class TestData : INotifyPropertyChanged // and the required event handler is there also,

    0熱度

    1回答

    「全選」 -CheckBox ComboBoxItem我試圖做一個WPF CustomControl CheckComboBox與除項目的用戶自定義列表中的「全選」項。當選擇「全選」時,應該檢查列表中的所有項目。我該如何處理被點擊的「全選」項目?我已經嘗試了很多事情,但在CheckComboBox.cs財產「全選」永遠不會進入。 這是我現在的代碼。 Generic.xaml <Style Targ

    0熱度

    1回答

    我有複合集合。在從後面的代碼修改其項目後,我希望View得到更新。但我不知道如何通知視圖。我試過INotifyCollectionChanged,但它不適合我。 protected ObservableCollection<ScriptParameterComboItem> cItems public virtual CompositeCollection CItems {

    1熱度

    1回答

    我正在嘗試將列表框的itemsSource設置爲compositecollection。 <ListBox x:Name="moduleMenu" SelectedItem="{Binding SelectedSourceViewDetail}"> <ItemsControl.ItemsPanel> <ItemsPanelTemplate>

    0熱度

    1回答

    當我有我的看法組合框,並希望有一個空項目,以便能夠取消選擇的選項,我在我看來,使用此代碼: <ComboBox.Resources> <CollectionViewSource x:Key="comboBoxSource" Source="{Binding ElementName=ucPrincipal, Path=DataContext.MyProperty}" /> </Combo

    4熱度

    1回答

    我有一個綁定到動物集合的ComboBox。從它我選擇我最喜歡的動物。我需要綁定項目上方的靜態空項目。我使用CompositeCollection聲明它。當組合框綁定時,不會選擇我最喜歡的動物。我該如何解決這個問題?類似問題here但仍未解決。 觀察: 綁定到靜態項工作,即如果我沒有初始喜愛的動物的靜態項被選中。 如果刪除了靜態項目,問題就會消失。當然這會使CompositeCollection和這

    0熱度

    1回答

    我有一個ObservableCollection與MyParent對象,它們又有自己的ObservableCollectionMyChild對象。現在我想在網格視圖中顯示全部MyChild對象,這自然要求展平集合。 CompositeCollection看起來很有希望。 問:是否可以在CompositeCollection中包裝任意數量的集合? 如果不是,是否有替代方案?