我在 StackPanel 中有一个自定义控件
<Window x:Class="Video_Editor.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"
xmlns:m="clr-namespace:Video_Editor">
<Grid>
</StackPanel>
<ScrollViewer Margin="10,40,10,10" Grid.Row="2" VerticalScrollBarVisibility="Auto">
<StackPanel Name="stackPanel" >
<m:CustomControl Name="testControl"/>
</StackPanel>
</ScrollViewer>
</Grid>
自定义控件当前不执行任何操作。
public class CustomControl: ItemsControl
{
}
我试图在窗口的构造函数中这样做:
public MainWindow()
{
InitializeComponent();
testControl.Items.Add("item");
}
我收到错误“名称”testControl 在当前上下文中不存在。