c# - Drawing some elements over others on canvas -
i have list of figures, have different coefficients. draw figures higher coefficient above have lower. how can accomplish task?
set panel.zindex
property, which
gets or sets value represents order on z-plane in element appears
you may bind zindex coefficient property of view model:
<polyline points="{binding figure}" panel.zindex="{binding coefficient}" .../>
Comments
Post a Comment