JRamos
Is there a way to make a search bar for a datagrid in WPF?
naive solution:
Have datagrid reference some observableCollection<stuff> VisibleRows. Have a separate textbox and button. Have a button populate
VisibleRows
from a list of all of your data based on the TextBox content.4 replies
Connecting Lines in 3D space
A slow solution is simply storing all of the endpoints of the line segment in a collection, then starting from the top of one, find non vertical lines with an endpoint within 0.0001 of the top, then removing that line from the collection, then continuing until you reach the other vertical lines top.
4 replies