如何从“代码隐藏”访问此属性?

时间:2012-02-22 09:28:03

标签: c# wpf properties

    <ListBox Margin="1,42,0,0" BorderThickness="0" BorderBrush="{x:Null}"
                telerik:StyleManager.Theme="Metro"
                Name="lbSource" ItemTemplate="{StaticResource ListBoxItemTemplate}"
                ItemContainerStyle="{StaticResource DisallowDrag}"
             telerik:DragDropManager.AllowDrag="True".....

属性telerik:DragDropManager.AllowDrag - 如何从C#切换它?

感谢。

1 个答案:

答案 0 :(得分:3)

尝试使用以下语句将此属性值设置为false。

lbSource.SetValue(DragDropManager.AllowDrag, false);