列表视图中的文本框-更新源和移动焦点在标签不同时工作



我有一个listview。我已经设置了以下int:-

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

listview中的一列包含TextBox的。

如果我设置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" >

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

编辑

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

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

这样绑定将被保留,UpdateSource将正常工作。

相关内容

  • 没有找到相关文章

最新更新