我有一些控件,我将Name
属性设置为唯一名称,但我无法在匹配的C#代码文件中访问它们。
我试过了:
this.ControlName
MainWindow.ControlName
ControlName
但确实“看到”了他们。
我该怎么做?
我还必须为包装面板,网格视图等中的嵌套控件做些特别的事情吗?
编辑:
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Reflection;
namespace EditorWindow
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow ( )
{
}
}
}
<Window x:Class="EditorWindow.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Effects Editor">
<DockPanel>
<ListView x:Name="EffectsListView">
</ListView>
</DockPanel>
</Window>
答案 0 :(得分:16)
要访问后面代码中的任何元素,您需要设置x:Name指令。 它告诉XAML解析器将表示指定元素的字段添加到Window类的自动生成部分,就像Winforms一样。
在WPF应用程序中,不需要为每个元素命名。您应该只列出要以编程方式与之交互的元素。
一个例子:
<TextBlock x:Name="tblText" Text="Stackoverflow rocks."></TextBlock>
修改强>
我使用了以下代码,并且能够访问列表视图:
namespace WpfApplicationUnleashed
{
/// <summary>
/// Interaction logic for Window1.xaml
/// </summary>
public partial class Window1 : Window
{
public Window1()
{
InitializeComponent();
EffectsListView.Width = 10;
}
}
}
<Window x:Class="WpfApplicationUnleashed.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:local="clr-namespace:WpfApplicationUnleashed"
Title="Window1" >
<DockPanel>
<ListView x:Name="EffectsListView"></ListView>
</DockPanel>
</Window>
答案 1 :(得分:4)
您是否在xaml中设置了x:Name="ControlName"
属性?
Here是关于x:Name指令的更多信息。
例如:
<Button x:Name="Button1">Click Me</Button>