SelectedItems如何Binding

在WPF中,不论是ListBox,ListView或者DataGrid,在使用中都会经常用到SelectedItems,但是在Xaml中却发现SelectedItems没有办法Binding。这是因为SelectedItems是一个只读属性,且不是一个DependencyProperty,所以没法Binding。不过我们却可以通过以下几种方法来实现这个功能:

【方案一】

使用后台代码,读取这个控件的SelectedItems属性。例如
XAML:

1
2
<ListView  ItemsSource="{Binding}" x:Name="lvTest">
</ListView>

那么后台就可以

阅读更多

EF记录数据变更方法

在使用SQLServer时,通常情况下使用SQLServer自带管理器可以查看到数据变更的记录。如果在程序用需要更灵活的记录这些信息,则可以通过EF的ObjectStateManager属性的相关方法实现。

ObjectStateManager.GetObjectStateEntries 方法

返回具有给定状态的对象或关系的 ObjectStateEntry 对象的集合。

命名空间: System.Data.Objects

程序集: System.Data.Entity(在 System.Data.Entity.dll 中)

阅读更多

删除ListView(ListBox)中Binding的item

使用EF框架并在在ListView或ListBox中binding了数据源,每一行数据都对应一个删除按钮,点击这个按钮就删除对应的那条数据。

看似简单的功能也能玩出新花样,下面提供两种方案:

【方案一】

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<ListBox FontSize="20" SelectionMode="Single" ItemsSource="{Binding XX}" >
<ListBox.ItemTemplate>
<DataTemplate>
<DockPanel>
<Button Width="25" DockPanel.Dock="Right" Height="25" Style="{x:Null}" Tag="{Binding}" Background="{x:Null}" BorderBrush="{x:Null}">
<i:Interaction.Triggers>
<i:EventTrigger EventName="Click">
<ei:CallMethodAction MethodName="Del" TargetObject="{Binding DataContext, RelativeSource={RelativeSource AncestorType={x:Type Window}, Mode=FindAncestor}}"/>
</i:EventTrigger>
</i:Interaction.Triggers>
</Button>
<TextBlock x:Name="txtContent" DockPanel.Dock="Left" TextAlignment="Center" Text="{Binding xx,Mode=TwoWay}" />
</DockPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
1
2
3
4
5
6
7
8
9
10
11
12
13
public void Del(object sender, RoutedEventArgs e)
{
if (sender != null && sender is Button)
{
if (((Button)sender).Tag != null && ((Button)sender).Tag is XX)
{
if (Utils.ShowMessage(this, "确定要删除吗?", "警告", MessageBoxButton.YesNo, MessageBoxImage.Warning) == MessageBoxResult.Yes)
{
DelOper();
}
}
}
}
阅读更多

浅析StaticResource和DynamicResource

初学WPF的新人有时都会对StaticResource和DynamicResource的概念及应用朦朦胧胧,这里通过一个小例子彻底弄懂这两者的区别及用法。

首先是前台XAML:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Window x:Class="WpfApplication50.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<SolidColorBrush x:Key="Brush" Color="Red" />
</Window.Resources>
<StackPanel>
<Button Margin="5" Content="Change Resource" Click="Button_Click" />
<Label x:Name="lbl1" Margin="5" Content="Static Resource(Window.Resources)" Background="{StaticResource Brush}" />
<Label x:Name="lbl2" Margin="5" Content="Static Resource(Label.Resources)" Background="{StaticResource Brush}" >
<Label.Resources>
<SolidColorBrush x:Key="Brush" Color="Blue" />
</Label.Resources>
</Label>
<Label x:Name="lbl3" Margin="5" Content="DynamicResource(Window.Resources)" Background="{DynamicResource Brush}" />
<Label x:Name="lbl4" Margin="5" Content="DynamicResource(Label.Resources)" Background="{DynamicResource Brush}" >
<Label.Resources>
<SolidColorBrush x:Key="Brush" Color="Blue" />
</Label.Resources>
</Label>

</StackPanel>

</Window>

后台的代码:

1
2
3
4
5
private void Button_Click(object sender, RoutedEventArgs e)
{
SolidColorBrush brush = new SolidColorBrush(Colors.Yellow);
this.Resources["Brush"] = brush;
}
阅读更多

WPF隐藏ListView中GridView的列

有需求要根据某变量的值将ListView中GridView的某一个GridViewColumn做隐藏设置,经过一番思考,总结了两种方法,但都需要对ListView中的GridView以及每一个GridViewColumn做命名:

1
2
3
4
5
6
7
8
<ListView x:Name="lvTest"  SelectionMode="Single">
<ListView.View>
<GridView x:Name="gvTest" >
<GridViewColumn x:Name="gvcName" Width="85" />
<GridViewColumn x:Name="gvcAge" Width="85" />
</GridView>
</ListView.View>
</ListView>

方法一:设置列宽

这种方法相对简单,如果没有特殊条件限制,可以直接设置某一列的width=0,如:

gvcName.Width = 0

阅读更多

WPF获取ContextMenu的源

在WPF中若使用多个控件,并给这些控件添加同一个ContextMenu,那么如何获取ContextMenu的鼠标点击源?

WPF的ContextMenu并没有Winform的ContextMenu的SourceControl这一属性,但我们也可以通过另一种方法实现同样的功能。

在ContextMenu的MenuItem的点击事件中使用ContextMenu.PlacementTarget

1
2
3
4
5
public void MenuItem_Click(object sender, RoutedEventArgs e)
{
ContextMenuService.GetPlacementTarget(
LogicalTreeHelper.GetParent(sender as MenuItem));
}

DataGrid绑定Dictionary问题

【问题】

在最近的项目中使用DataGrid的DataGridCheckBoxColumn绑定了后台TagModel类的IsSelected字段,数据源是TagModel类型的Dictionary,运行发现Checkbox不能正常勾选,提示错误:此视图不允许“EditItem”。

【问题重现】

前台:

1
<DataGridCheckBoxColumn Binding="{Binding IsSelected}" />
阅读更多

WPF之DragDrop拖放实例---图像资源管理器

1. 问题

在winform或wpf开发中,常会用到DragDrop拖放功能,如拖拽一个文件到程序窗体,则在文本控件上显示文件的路径,其他内容控件显示文件内容,这样省去输入文件路径或者打开文件对话框的麻烦。在实际应用中,我们也会看到一些影音播放器支持对拖放文件的播放,Office支持对拖放文件的插入等等。综合上述情况,多数情况下,我们关注了从程序外部拖放文件至程序,也就是拖过来。

那么如果现在做一个功能,需要我们把程序中的内容拖放到另一个程序中,比如直接拖拽程序中的图片控件到Word,就把图片控件中的图粘贴到Word中,也就是拖过去,这要怎么实现?

阅读更多

wpf失去焦点事件中重获焦点

WPF 在TextBox失去焦点时检测数据,出错重新获得焦点解决办法
在WPF的TextBox的LostFocus事件中直接使用Focus()方法会出现死循环的问题
正确的使用方式有两种方法:
方法一:

1
2
3
4
5
6
7
8
9
10
11
private void textBox3_LostFocus(object sender, RoutedEventArgs e)
{
if (textBox3.Text != "abc")
{
this.Dispatcher.BeginInvoke(System.Windows.Threading.DispatcherPriority.Render,
new Action(() =>
{
textBox3.Focus();
}));
}
}

方法二,使用LostKeyboardFocus方法:

1
2
3
4
5
6
7
private void textBox3_LostKeyboardFocus(object sender, KeyboardFocusChangedEventArgs e)
{
if (textBox3.Text != "abc")
{
textBox3.Focus();
}
}

说明:在msdn上就查找到:

阅读更多

WPF调用Winform控件

WPF调用Winform控件实现主要分三步:

WPF调用Winform控件

1、添加两个引用:

WindowsFormsIntegration(负责整合WPF和Windows)
System.Windows.Forms

2、在 XAML文件中添加两个引用:

阅读更多