如何在运行时动态应用wpf数据绑定

时间:2015-03-25 15:17:56

标签: c# wpf xaml data-binding datepicker

我一直致力于WPF GUI在运行时生成的任务。运行时生成的GUI由另一个wpf应用程序使用。模板生成器应用程序允许使用XAMLWriter创建GUI并将其保存为xml(xaml实际上是xml)。消费者应用程序使用XAMLReader在GUI上添加模板。现在我想在生成的模板中的控件之间进行某种绑定。

要求:第一个Datepicker = 2015/01/02的日期和textbox Text = 1,然后第二个datepicker上的日期必须是2015/01/03。如果textbox text = -1,则第二个日期选择器上的日期必须为2015/01/01。

我如何在运行时实现这一目标。没有什么需要硬编码,因为生成的模板是从另一个应用程序生成的。我们在控件的Tag属性上有一些特定的值,它们指示我们涉及哪三个控件以及哪个datepicker是source,哪个datepicker是目标以及需要使用哪个文本框文本。

是否可以使用动态数据绑定?或者如何实现这一目标

1 个答案:

答案 0 :(得分:1)

=>将您的Xml文件重命名为Xaml

<UserControl ...>
<Grid>
    <StackPanel Background="Aqua">
    <TextBlock Text="{Binding Path=Label}" Width="200" Height="40"/>
    </StackPanel>
</Grid>

=&GT;如果有

,这是您将与代码隐藏合并的类
public class XamlLoadedType:UserControl, IComponentConnector
{
    private bool _contentLoaded; 
    public void InitializeComponent() {
        if (_contentLoaded) {
            return;
        }
        _contentLoaded = true;
        var resourceLocater = new System.Uri(_uri, System.UriKind.Relative);            
        Application.LoadComponent(this, resourceLocater);
    }

    void IComponentConnector.Connect(int connectionId, object target) {
        this._contentLoaded = true;
    }

    string _uri ;
    public XamlLoadedType(string uri)
    {
        _uri = uri;
        InitializeComponent();
    }   
}

=&GT;主窗口和它的viewmodel:

<Window ...>
<Grid>
    <StackPanel>
        <Button Command="{Binding LoadCommand}" Width="100" Height="50">Load</Button>
    </StackPanel>
    <StackPanel Grid.Row="1">
        <ContentControl Content="{Binding LoadedContent}"/>
    </StackPanel>
</Grid>

public class MainViewModel:INotifyPropertyChanged
{
    public ICommand LoadCommand { get; set; }
    object _loadedContent;
    public object LoadedContent
    {
        get { return _loadedContent; }
        set {
            SetField(ref _loadedContent, value, "LoadedContent");
        }

    }
    public MainViewModel()
    {
        LoadCommand = new RelayCommand(Load, ()=>true);
    }

    private void Load()
    {
        var xamlLoaded = new XamlLoadedType("/WPFApplication1;component/XamlToLoad.xml.xaml");
        xamlLoaded.DataContext = new { Label = "HeyDude" };
        LoadedContent = xamlLoaded;

    }
}