0

3 レベルの階層を持つ XamGrid を作成しました。Silverlight 4 で作成しました。xamgrid の上に、オートコンプリート ボックスである検索テキスト ボックスがあります。AutocompleteBox からアイテムを選択して入力すると、グリッド内のそのアイテムが展開されます。どうやってやるの??plzは提案します..私のオートコンプリートbosは次のとおりです。

<local:ExtendedAutoCompleteBox
                            x:Name="InvNamesSearch"
                            WaterMark="TypeName"
                            HorizontalAlignment="Left" VerticalAlignment="Center" 
                            Width="300" Margin="5,0,0,0"
                            MinimumPrefixLength="3"   
                            IsTextCompletionEnabled="False"
                            Text="{Binding InvestmentText, Mode=TwoWay}"
                            ItemsSource="{Binding A,Mode=OneWay}"
                            SelectedItem="{Binding Path=B, Mode=TwoWay}"                                                
                            ValueMemberBinding="{Binding A}"                            
                            FilterMode="Contains" Canvas.Left="683" Canvas.Top="9"
                            Command="{Binding AutoSuggestEnterCommand}">
                    <local:ExtendedAutoCompleteBox.ItemTemplate>
                        <DataTemplate>
                            <TextBlock x:Name="txtAutoSelectedItem" Text="{Binding A}"  />
                        </DataTemplate>
                    </local:ExtendedAutoCompleteBox.ItemTemplate>
                </local:ExtendedAutoCompleteBox>
4

1 に答える 1

1

XamGrid には、すべてのルート レベル行のコレクションである Rows プロパティがあります。これらの行とその子行を繰り返し処理して、オートコンプリート ボックスで検索されたデータを探すことができます。データが見つかったら、それぞれの行で IsExpanded プロパティを true に設定できます。コードは次のようになります。

// This function returns a row that contains the supplied search criteria
public Row FindRowFromAutoCompleteBox(RowCollection rootRows, string searchCriteria)
{
    foreach (Row row in rootRows)
    {
        if (row.Data is LevelOneDataType)
        {
            if ((row.Data as LevelOneDataType).LevelOneProperty == searchCriteria)
                return row;
        }
        if (row.Data is LevelTwoDataType)
        {
            if ((row.Data as LevelTwoDataType).LevelTwoProperty == searchCriteria)
                return row;
        }
        if (row.Data is LevelThreeDataType)
        {
            if ((row.Data as LevelThreeDataType).LevelThreeProperty == searchCriteria)
                return row;
        }
        // Search child rows.
        if (row.ChildBands.Count != 0)
        {
            Row result = FindRowFromAutoCompleteBox(row.ChildBands[0].Rows, searchCriteria);
            if (result != null)
                return result;
        }
    }

    return null;
}

// Walks up the hierarchy starting at the supplied row and expands parent rows as it goes.
public void ExpandHierarchy(Row row)
{
    Row parentRow = null;

    // The row is a child of another row.
    if (row.ParentRow is ChildBand)
        parentRow = (row.ParentRow as ChildBand).ParentRow;

    while (parentRow != null)
    {
        // Expand the row.
        parentRow.IsExpanded = true;

        if (parentRow.ParentRow is ChildBand)
            parentRow = (parentRow.ParentRow as ChildBand).ParentRow;
        else
            parentRow = null;
    }
}

これらの関数を使用すると、必要な行を検索して展開できるようになりました。

Row result = FindRowFromAutoCompleteBox(xamGrid1.Rows, "Value");
if (result != null)
{
    ExpandHierarchy(result);
    result.IsSelected = true;
}
于 2013-01-11T16:26:51.933 に答える