RE: WPF: Use MultiBinding to bind end of line to a thumb

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Linda Liu[MSFT]

    RE: WPF: Use MultiBinding to bind end of line to a thumb

    Hi George,

    I have downloaded your sample project and built it on my machine. When I
    start the application and click the Button on the window, I get an
    InvalidCastExce ption on the line of code "double topLeft =
    (double)values[0];" in the Convert method within the LineBindingConv erter
    class.

    I look into the parameter "values" and find the first element in it is of
    type DependencyPrope rty.UnsetValue. Open the source code of the Window1 and
    I find the reason that causes this error, i.e. the Thumb class doesn't have
    a Left or Top property. They are attached properties of Canvas.

    Modify the two lines of code in the BindLine method as follows and the
    problem should be solved:

    // bindingX.Path = new PropertyPath("L eft");
    bindingX.Path = new PropertyPath("( Canvas.Left)");
    // bindingY.Path = new PropertyPath("T op");
    bindingY.Path = new PropertyPath("( Canvas.Top)");

    Please try my suggestion and let me know the result.

    Sincerely,
    Linda Liu
    Microsoft Online Community Support

    Delighting our customers is our #1 priority. We welcome your comments and
    suggestions about how we can improve the support we provide to you. Please
    feel free to let my manager know what you think of the level of service
    provided. You can send feedback directly to my manager at:
    msdnmg@microsof t.com.

    =============== =============== =============== =====
    Get notification to my posts through email? Please refer to
    Gain technical skills through documentation and training, earn certifications and connect with the community

    ications.

    Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
    where an initial response from the community or a Microsoft Support
    Engineer within 1 business day is acceptable. Please note that each follow
    up response may take approximately 2 business days as the support
    professional working with you may need further investigation to reach the
    most efficient resolution. The offering is not appropriate for situations
    that require urgent, real-time or phone-based interactions or complex
    project analysis and dump analysis issues. Issues of this nature are best
    handled working with a dedicated Microsoft Support Engineer by contacting
    Microsoft Customer Support Services (CSS) at
    http://msdn.microsoft.com/subscripti...t/default.aspx.
    =============== =============== =============== =====
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • moondaddy

    #2
    Re: WPF: Use MultiBinding to bind end of line to a thumb

    Linda, Thank you very much. That was it!


    "Linda Liu[MSFT]" <v-lliu@online.mic rosoft.comwrote in message
    news:iM2jWBD3IH A.3784@TK2MSFTN GHUB02.phx.gbl. ..
    Hi George,
    >
    I have downloaded your sample project and built it on my machine. When I
    start the application and click the Button on the window, I get an
    InvalidCastExce ption on the line of code "double topLeft =
    (double)values[0];" in the Convert method within the LineBindingConv erter
    class.
    >
    I look into the parameter "values" and find the first element in it is of
    type DependencyPrope rty.UnsetValue. Open the source code of the Window1
    and
    I find the reason that causes this error, i.e. the Thumb class doesn't
    have
    a Left or Top property. They are attached properties of Canvas.
    >
    Modify the two lines of code in the BindLine method as follows and the
    problem should be solved:
    >
    // bindingX.Path = new PropertyPath("L eft");
    bindingX.Path = new PropertyPath("( Canvas.Left)");
    // bindingY.Path = new PropertyPath("T op");
    bindingY.Path = new PropertyPath("( Canvas.Top)");
    >
    Please try my suggestion and let me know the result.
    >
    Sincerely,
    Linda Liu
    Microsoft Online Community Support
    >
    Delighting our customers is our #1 priority. We welcome your comments and
    suggestions about how we can improve the support we provide to you. Please
    feel free to let my manager know what you think of the level of service
    provided. You can send feedback directly to my manager at:
    msdnmg@microsof t.com.
    >
    =============== =============== =============== =====
    Get notification to my posts through email? Please refer to
    Gain technical skills through documentation and training, earn certifications and connect with the community

    ications.
    >
    Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
    where an initial response from the community or a Microsoft Support
    Engineer within 1 business day is acceptable. Please note that each follow
    up response may take approximately 2 business days as the support
    professional working with you may need further investigation to reach the
    most efficient resolution. The offering is not appropriate for situations
    that require urgent, real-time or phone-based interactions or complex
    project analysis and dump analysis issues. Issues of this nature are best
    handled working with a dedicated Microsoft Support Engineer by contacting
    Microsoft Customer Support Services (CSS) at
    http://msdn.microsoft.com/subscripti...t/default.aspx.
    =============== =============== =============== =====
    This posting is provided "AS IS" with no warranties, and confers no
    rights.
    >

    Comment

    Working...