How to bind a read-only WPF control property (eg ActualWidth) so its value is accessible in the view model? [duplicate]

↘锁芯ラ 提交于 2019-11-30 07:04:10

问题


I want to bind a read-only property of a control to my view model so that the value is available in the view model.

What is the best way of doing this?

For example I'd like to bind ActualWidth to a property in my view model. The width value is generated by WPF using its layout logic so I can't generate this value in my view model and push it to the control property, as would normally be the case. Instead I need to have WPF generate the value and push it to the view model.

I would just use Mode=OneWayToSource, but this doesn't work for read-only properties:

  <Border
      ...
      ActualWidth="{Binding MyDataModelWidth, Mode=OneWayToSource}"
      >
      ... child controls ...
  </Border>

The way I am doing it currently is to handle SizeChanged for the border and the code-behind plugs the value into the view model, but this doesn't feel quite right.

Has anyone already solved this problem?

UPDATE: My question is effectively a duplicate of this one: Pushing read-only GUI properties back into ViewModel


回答1:


The actual problem as to why this is not working is described here.

However, the given solution to create a throwing setter to pass the validation would not work in your case.

I think it's ok to call a method on the ViewModel. If that's the code behind part that bugs you, perhaps you can use interactivity to call a method based on an event trigger (SizeChanged).




回答2:


do you really need a binding for that?

    class MyVM
    {
        FrameworkElement _context;

        public MyVM(FrameworkElement context)
        {
            _context = context;
        }

        public double Width
        {
            get { return _context.ActualWidth; }
        }
    }


来源:https://stackoverflow.com/questions/4438412/how-to-bind-a-read-only-wpf-control-property-eg-actualwidth-so-its-value-is-ac

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!