void IList <IFocusKeywordFrame> .Insert(int index, IFocusKeywordFrame item)
 {
     Insert(index, (ILayoutKeywordFrame)item);
 }
 int IList <IFocusKeywordFrame> .IndexOf(IFocusKeywordFrame value)
 {
     return(IndexOf((ILayoutKeywordFrame)value));
 }
 bool ICollection <IFocusKeywordFrame> .Remove(IFocusKeywordFrame item)
 {
     return(Remove((ILayoutKeywordFrame)item));
 }
 bool ICollection <IFocusKeywordFrame> .Contains(IFocusKeywordFrame value)
 {
     return(Contains((ILayoutKeywordFrame)value));
 }
 void ICollection <IFocusKeywordFrame> .Add(IFocusKeywordFrame item)
 {
     Add((ILayoutKeywordFrame)item);
 }
Example #6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="FocusDiscreteContentFocusableCellView"/> class.
 /// </summary>
 /// <param name="stateView">The state view containing the tree with this cell.</param>
 /// <param name="parentCellView">The collection of cell views containing this view. Null for the root of the cell tree.</param>
 /// <param name="frame">The frame that created this cell view.</param>
 /// <param name="propertyName">Property corresponding to the component of the node.</param>
 /// <param name="keywordFrame">The keyword frame that was used to create this cell.</param>
 public FocusDiscreteContentFocusableCellView(IFocusNodeStateView stateView, IFocusCellViewCollection parentCellView, IFocusFrame frame, string propertyName, IFocusKeywordFrame keywordFrame)
     : base(stateView, parentCellView, frame, propertyName, keywordFrame)
 {
 }