GrapeCity SPREAD for WPF 2.0J
SelectedItem プロパティ (GcSpreadGrid)

アクティブな選択項目を取得または設定します。
構文
'Declaration
 
Public Property SelectedItem As Object
public object SelectedItem {get; set;}

プロパティ値

アクティブな選択項目。何も選択されていない場合は null 参照 (Visual Basicでは Nothing) を返します。
次のサンプルはSelectedItemプロパティの使用方法を説明します。
<sg:GcSpreadGrid Name="gcSpreadGrid1" ItemsSource="{StaticResource mySource}" 
           SelectionPolicy="Range" SelectionUnit="Cell" SelectionBackground="Red" 
           SelectionForeground="Blue" SelectionBackgroundUnfocused="Brown" SelectionForegroundUnfocused="Gray"
           HeaderSelectionOptions="ColumnHeader|RowHeader">
    <sg:GcSpreadGrid.SelectionBorder>
        <sg:BorderLine Color="Black" Style="MediumDashDot"/>
    </sg:GcSpreadGrid.SelectionBorder>
</sg:GcSpreadGrid>
<ComboBox ItemsSource="{Binding SelectedItems, ElementName=gcSpreadGrid1}" 
          SelectedItem="{Binding SelectedItem, ElementName=gcSpreadGrid1}"
          DisplayMemberPath="Name"/>
参照

GcSpreadGrid クラス
GcSpreadGrid メンバ

 

 


Copyright © 2012 GrapeCity inc. All rights reserved.