I have a control with an Ellipse
inside and I insert this control to WrapPanel
dynamically with foreach. Does anyone know how can I separate some Ellipse
from the others with Break or Newline:
foreach (var system in provider.Systems)
{
foreach (var fx in system.Fxes)
{
panel1.Children.Add(TrunkControl());
}
panel1.Children.Add(new SeperatorControl());
}
I want to add a new line or break after inner foreach. I just don't know what my SeperatorControl
should be.