herbfunk
Community Developer
- Joined
- Oct 30, 2012
- Messages
- 238
- Reaction score
- 7
I've made a label using similar code found in Trinity buttons, and the label appears with the original content I set, but there is no update/redraw occurring and I have no idea what event to use or where I should be updating it at.. if anyone could help that would be very much appreciated!
Below is the code I added into OnInitalize,
Below is the code I added into OnInitalize,
Code:
lblTest = new Label
{
Width = 100,
HorizontalAlignment = HorizontalAlignment.Left,
VerticalAlignment = VerticalAlignment.Top,
Margin = new Thickness(232, 58, 0, 0),
Content = "test!"
};