Hi,
Code below add StatusStrip with one LabelElement to form.
How to get the parent control of LabelElement by code?
Later on in my code, i must call Invoke method on StatusStrip, but i have only access to LabelElement
// Add statusbar RadStatusStrip status = new RadStatusStrip();Controls.Add(status);// Add label to statusbarRadLabelElement label = new RadLabelElement();label.Text = "test";status.Items.Add(label);// This is only radelementRadStatusBarElement RadStatusBarElement = (RadStatusBarElement)label.Parent.Parent;// Can't convert like thatRadStatusStrip RadStatusStrip = (RadStatusStrip)RadStatusBarElement;