- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将选项卡绑定(bind)到 ViewModel 中的可观察集合属性。 DataTemplate
每个 View 模型都是一个包含内部选项卡控件的用户控件。当我在内部选项卡控件中切换选项卡,然后在外部选项卡控件中切换选项卡时,新选择的外部选项卡的内容显示选择了相同的内部选项卡,而不是选择了保留选项卡。我尝试使用 x:Shared="False"并确保我的 Equals
和 GetHashCode
View 模型上的方法已正确实现。我还没有看到任何人能够以 MVVM 的方式回答这个问题。
最佳答案
默认情况下,WPF 回收 TabItem
s 切换标签时。这意味着如果 TabItem
的模板是一样的,它会重新使用已经显示的项目并简单地改变它的DataContext
如果你想保持控制状态,比如选中的项目,你需要将它们绑定(bind)到 DataContext
中的某个东西上。 .
所以你的TabItemViewModel
可能具有 SelectedTabIndex
的属性这将绑定(bind)到内部 TabControl 的 SelectedIndex
您会注意到 ListBox、TextBox、CheckBox 等具有相同的行为。由于 TabItem 正在被回收,因此不会丢弃任何控件,因此不会重置它们的值。唯一改变的是 DataContext。
编辑
有覆盖 TabControl
的替代方法类来改变它处理 TabItems 的方式。我过去使用过这个,因为如果 TabItem 的模板发生更改,它会丢弃整个 TabItem 并重新绘制它,这可能会导致性能下降。
发布了一些代码here这将改变这种行为,但该网站似乎已关闭。这是我使用的代码的副本,尽管我已经更改了一些版本。
// Extended TabControl which saves the displayed item so you don't get the performance hit of
// unloading and reloading the VisualTree when switching tabs
// Obtained from http://www.pluralsight-training.net/community/blogs/eburke/archive/2009/04/30/keeping-the-wpf-tab-control-from-destroying-its-children.aspx
// and made a some modifications so it reuses a TabItem's ContentPresenter when doing drag/drop operations
[TemplatePart(Name = "PART_ItemsHolder", Type = typeof(Panel))]
public class TabControlEx : System.Windows.Controls.TabControl
{
// Holds all items, but only marks the current tab's item as visible
private Panel _itemsHolder = null;
// Temporaily holds deleted item in case this was a drag/drop operation
private object _deletedObject = null;
public TabControlEx()
: base()
{
// this is necessary so that we get the initial databound selected item
this.ItemContainerGenerator.StatusChanged += ItemContainerGenerator_StatusChanged;
}
/// <summary>
/// if containers are done, generate the selected item
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
void ItemContainerGenerator_StatusChanged(object sender, EventArgs e)
{
if (this.ItemContainerGenerator.Status == GeneratorStatus.ContainersGenerated)
{
this.ItemContainerGenerator.StatusChanged -= ItemContainerGenerator_StatusChanged;
UpdateSelectedItem();
}
}
/// <summary>
/// get the ItemsHolder and generate any children
/// </summary>
public override void OnApplyTemplate()
{
base.OnApplyTemplate();
_itemsHolder = GetTemplateChild("PART_ItemsHolder") as Panel;
UpdateSelectedItem();
}
/// <summary>
/// when the items change we remove any generated panel children and add any new ones as necessary
/// </summary>
/// <param name="e"></param>
protected override void OnItemsChanged(NotifyCollectionChangedEventArgs e)
{
base.OnItemsChanged(e);
if (_itemsHolder == null)
{
return;
}
switch (e.Action)
{
case NotifyCollectionChangedAction.Reset:
_itemsHolder.Children.Clear();
if (base.Items.Count > 0)
{
base.SelectedItem = base.Items[0];
UpdateSelectedItem();
}
break;
case NotifyCollectionChangedAction.Add:
case NotifyCollectionChangedAction.Remove:
// Search for recently deleted items caused by a Drag/Drop operation
if (e.NewItems != null && _deletedObject != null)
{
foreach (var item in e.NewItems)
{
if (_deletedObject == item)
{
// If the new item is the same as the recently deleted one (i.e. a drag/drop event)
// then cancel the deletion and reuse the ContentPresenter so it doesn't have to be
// redrawn. We do need to link the presenter to the new item though (using the Tag)
ContentPresenter cp = FindChildContentPresenter(_deletedObject);
if (cp != null)
{
int index = _itemsHolder.Children.IndexOf(cp);
(_itemsHolder.Children[index] as ContentPresenter).Tag =
(item is TabItem) ? item : (this.ItemContainerGenerator.ContainerFromItem(item));
}
_deletedObject = null;
}
}
}
if (e.OldItems != null)
{
foreach (var item in e.OldItems)
{
_deletedObject = item;
// We want to run this at a slightly later priority in case this
// is a drag/drop operation so that we can reuse the template
this.Dispatcher.BeginInvoke(DispatcherPriority.DataBind,
new Action(delegate()
{
if (_deletedObject != null)
{
ContentPresenter cp = FindChildContentPresenter(_deletedObject);
if (cp != null)
{
this._itemsHolder.Children.Remove(cp);
}
}
}
));
}
}
UpdateSelectedItem();
break;
case NotifyCollectionChangedAction.Replace:
throw new NotImplementedException("Replace not implemented yet");
}
}
/// <summary>
/// update the visible child in the ItemsHolder
/// </summary>
/// <param name="e"></param>
protected override void OnSelectionChanged(SelectionChangedEventArgs e)
{
base.OnSelectionChanged(e);
UpdateSelectedItem();
}
/// <summary>
/// generate a ContentPresenter for the selected item
/// </summary>
void UpdateSelectedItem()
{
if (_itemsHolder == null)
{
return;
}
// generate a ContentPresenter if necessary
TabItem item = GetSelectedTabItem();
if (item != null)
{
CreateChildContentPresenter(item);
}
// show the right child
foreach (ContentPresenter child in _itemsHolder.Children)
{
child.Visibility = ((child.Tag as TabItem).IsSelected) ? Visibility.Visible : Visibility.Collapsed;
}
}
/// <summary>
/// create the child ContentPresenter for the given item (could be data or a TabItem)
/// </summary>
/// <param name="item"></param>
/// <returns></returns>
ContentPresenter CreateChildContentPresenter(object item)
{
if (item == null)
{
return null;
}
ContentPresenter cp = FindChildContentPresenter(item);
if (cp != null)
{
return cp;
}
// the actual child to be added. cp.Tag is a reference to the TabItem
cp = new ContentPresenter();
cp.Content = (item is TabItem) ? (item as TabItem).Content : item;
cp.ContentTemplate = this.SelectedContentTemplate;
cp.ContentTemplateSelector = this.SelectedContentTemplateSelector;
cp.ContentStringFormat = this.SelectedContentStringFormat;
cp.Visibility = Visibility.Collapsed;
cp.Tag = (item is TabItem) ? item : (this.ItemContainerGenerator.ContainerFromItem(item));
_itemsHolder.Children.Add(cp);
return cp;
}
/// <summary>
/// Find the CP for the given object. data could be a TabItem or a piece of data
/// </summary>
/// <param name="data"></param>
/// <returns></returns>
ContentPresenter FindChildContentPresenter(object data)
{
if (data is TabItem)
{
data = (data as TabItem).Content;
}
if (data == null)
{
return null;
}
if (_itemsHolder == null)
{
return null;
}
foreach (ContentPresenter cp in _itemsHolder.Children)
{
if (cp.Content == data)
{
return cp;
}
}
return null;
}
/// <summary>
/// copied from TabControl; wish it were protected in that class instead of private
/// </summary>
/// <returns></returns>
protected TabItem GetSelectedTabItem()
{
object selectedItem = base.SelectedItem;
if (selectedItem == null)
{
return null;
}
if (_deletedObject == selectedItem)
{
}
TabItem item = selectedItem as TabItem;
if (item == null)
{
item = base.ItemContainerGenerator.ContainerFromIndex(base.SelectedIndex) as TabItem;
}
return item;
}
}
关于wpf - TabItem 内的 TabControl,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8592802/
我正在绑定(bind) TabViewModel 的集合项目到 TabControl .每一个都有一个标题 string属性,以及我自己的自定义类型的内容属性 BaseTabContentViewMo
嘿,我一直在尝试绘制自己的 TabControl 以摆脱 3D 阴影,但我没有取得太大的成功。 DrawItem 事件目前未触发。必须自己拍吗?我该怎么做? 代码: namespace NCPad {
我遇到了 tabcontrol 的问题。当我将 DrawMode 更改为 ownderdrawfixed 时,tabcontrol 的 borderstyle 从“fixedsingle”更改为“3d
我的非数据绑定(bind) TabControl 看起来不错: alt text http://tanguay.info/web/external/tabControlPlain.png
是否可以使 tabcontrol 边框透明,或设置 tabcontrol 的颜色? Winforms 最佳答案 如果有人遇到同样的问题,这是对我有用的答案 Border TabControl 正如它所
我正在为我的应用程序使用 MVVM 模式。 MainWindow 包含一个 TabControl,其中 DataContext 映射到 ViewModel:
我使用的是未指定高度和宽度的 TabControl。实际上,TabControl 的高度取当前选项卡的高度。 我不希望 TabControl 自动调整它的大小。我希望它采用最大标签的大小(高度和宽度)
我正在使用 WinForms 并且在某个时候我无法在我的 Win 窗体中找到 TabControl 用户的标题的高度, 下面我附上我想要实现的圈内图像,我已经搜索了很多,但我无法找到解决方案 最佳答案
我在选项卡控件的顶部有 4 个选项卡。我希望每个选项卡使用 TabControl 宽度的 25%。 使用 XAML 做到这一点的正确方法是什么? 这是我尝试过的:
我想设置一个 TabControl 使其标题位于左侧而不是顶部,我该怎么做? 最佳答案 关于wpf - TabControl.Orientation?,我们在Stack Overflow上找到一个
有谁知道为什么 TabControl 的 padding 属性不能用经典主题呈现但适用于 luna 主题? XAML 非常基础。我已经将左填充设为 50,这样问题在屏幕截图中就很明显了。
我有一个 WPF TabControl,包含两个不同宽度和高度的 TabItem。奇怪的是,当我在项目之间切换时,TabControl 的大小被调整为紧密适合所选选项卡项目。例如,如果我单击较小的 T
我必须开发一个自定义选项卡控件并决定使用 WPF/XAML 创建它,因为我无论如何都打算学习它。完成后应该是这样的: 到目前为止,我取得了很好的进展,但还有两个问题: 只有第一个/最后一个标签项应该有
嗨,我有两个问题。 如何以编程方式将 WPF 选项卡控件中的选定选项卡从一个选项卡更改为另一个选项卡。 如何获得对要在其中设置选定选项卡的“其他选项卡”的引用? 最佳答案 使用 SelectedInd
我对 TabControl 有疑问, 一个 TextBox和验证ToolTip . 想象一下有一个带有两个 TabItem 的 TabControl。第一项有一个简单的 TextBox .这个Text
我有一个选项卡控件,用于在应用程序中显示多个图像文件。我想在仅显示一个选项卡页时删除选项卡页标题,以便我可以使用该屏幕空间来显示图像。 (这类似于在 Firefox 中取消选择“始终显示选项卡栏”。)
我的 tabcontrol 中有 7 个 tabitem,而 tabcontrol 的宽度只有 500。因此 tabitem 显示在 3 行中。我希望它像溢出选项卡控件一样显示在选项卡控件末尾的下拉列
我有一个要自定义的选项卡控件。更具体地说,我想更改标签页标题的颜色,以及标签页周围白线的颜色(检查第一张图片)。 我想过使用自定义渲染器来执行此操作(例如,类似于为菜单条重新着色),但我不确定如何执行
我正在用单个窗口中的 TabControl 编写 WPF 桌面应用程序。我在 XAML View 中对一些属性进行了数据绑定(bind),只要在 .cs 文件的构造函数中更改了值,它就可以正常工作。稍
我有一个应用程序在 Vista 中运行时将每个控件的字体更改为 SegoeUI。它工作正常,除了标签页的标题(从一个标签切换到另一个标签时要单击的按钮)。 标签页标题不会垂直增长以适应更大的字体大小,
我是一名优秀的程序员,十分优秀!