0

我有一个列表视图。我已经设置了以下int:-

<ListView KeyboardNavigation.TabNavigation="Local" SelectionMode="Extended">
 <ListView.ItemContainerStyle>
  <Style>
     <Setter Property="KeyboardNavigation.IsTabStop" Value="False"/>
  </Style>
</ListView.ItemContainerStyle>

列表视图中的一列包含文本框。

如果我在我的文本框中设置 UpdateSourceTrigger=LostFocus,我无法通过列表视图进行选项卡...相反,如果我设置 UpdateSourceTrigger=Explicit,则选项卡正在工作...但源不会得到更新。

请帮我

编辑

public class TextBoxBehavior
    {
        #region Attached Property EscapeClearsText


        public static readonly DependencyProperty EscapeClearsTextProperty
           = DependencyProperty.RegisterAttached("EscapeClearsText", typeof(bool), typeof(TextBoxBehavior),
                new FrameworkPropertyMetadata(false, new PropertyChangedCallback(OnEscapeClearsTextChanged)));


        private static void OnEscapeClearsTextChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            if ((bool)e.NewValue)
            {
                var textBox = d as TextBox;
                if (textBox != null)
                {
                    textBox.KeyUp -= TextBoxKeyUp;
                    textBox.KeyUp += TextBoxKeyUp;
                }
            }
        }


        private static void TextBoxKeyUp(object sender, KeyEventArgs e)
        {
            if (e.Key == Key.Escape)
            {
                //((DataContext<string>)((TextBox)sender).GetBindingExpression(TextBox.TextProperty).DataItem).RollbackChanges();
                ((TextBox)sender).Text = string.Empty;
            }
            else if (e.Key == Key.Enter)
            {                
                ((TextBox)sender).GetBindingExpression(TextBox.TextProperty).UpdateSource();
                                }
        }

        public static void SetEscapeClearsText(DependencyObject dependencyObject, bool escapeClearsText)
        {
            if (!ReferenceEquals(null, dependencyObject))
                dependencyObject.SetValue(EscapeClearsTextProperty, escapeClearsText);
        }


        public static bool GetEscapeClearsText(DependencyObject dependencyObject)
        {
            if (!ReferenceEquals(null, dependencyObject))
                return (bool)dependencyObject.GetValue(EscapeClearsTextProperty);
            return false;
        }


        #endregion Attached Property EscapeClearsText
    }

下面是 listview/gridview 列,其中包含附加属性。

 <GridViewColumn  Width="60">
                                            <GridViewColumnHeader Content="Priority"
                                              Command="{Binding Path=SortSelectedClaimCodeGroupsCommand}"
                                              CommandParameter="Item.IntPriority">
                                            </GridViewColumnHeader>
                                            <GridViewColumn.CellTemplate>
                                                <DataTemplate>
                                                    <Border DataContext="{Binding Item.Priority}"
                                                        Style="{StaticResource ValidationResultBorderStyle}" HorizontalAlignment="Left" >
                                                        <TextBox Width="200" MaxLength="25" Text="{Binding Path=Value,Mode=TwoWay,                         
                                                            UpdateSourceTrigger=Explicit}" local:TextBoxBehavior.EscapeClearsText="True" >
4

1 回答 1

1

当您将 UpdateSourceTrigger 设置为显式时,您必须通过显式调用 BindingExpression 上的方法 UpdateSource 来更新源。代码在哪里?

编辑

在您的 TextBoxKeyUp 事件中,您通过设置按 Escape 键的文本来覆盖您的绑定。首先,将其绑定到属性 Value,然后将 Textbox 文本属性显式设置为 String.Empty。这样,文本属性将失去它的绑定。因此,以后每当您调用 UpdateSource 时,它​​都不会传播到 Source 值,因为它不再绑定到文本框的 Text 属性。相反,您应该像这样设置文本 -

((TextBox)sender).SetCurrentValue(TextBox.TextProperty, String.Empty);

这样,您的绑定将被保留,并且 UpdateSource 将正常工作。

于 2011-10-17T17:26:45.930 回答