0

我创建了自己的 UserControl,并在其中添加了 Button。我也有 Pivot,我在其中添加了这个 UserControl。如何在我的 UserControl 中更改 Button_Click 事件中的 Pivot selecteditem。

捆绑:

        Binding binding = new Binding("SelectedIndex");
        binding.Source = historyControls[i].SelectedIndex;
        Pivot_Second.SetBinding(Pivot.SelectedIndexProperty, binding);
4

1 回答 1

1
void Button_Click()
{
   SelectedIndex = desiredindex;
}

做一个属性

private int _SelectedIndex;
public int SelectedIndex
{
  get
  {
    return _SelectedIndex;
  }
  set
  {
    _SelectedIndex = value;
    RaisedPropertyChanged("SelectedIndex");
  }
}

然后将此属性与您的枢轴的选定索引绑定。

我希望它会奏效。

于 2013-06-28T07:27:10.140 回答