I receive an error using the code in the following question: Control snapping on resize in C# scrollable container The Error is from this part:
for (int x = 0; x < 20; x++)
{
messageControl1.Add(x.ToString("00") + ": Testing testing testing ...",
MessageControl.BubblePositionEnum.Right);
messageControl1.Add(x.ToString("00") + ": Testing with variable length strings. This one is longer!",
MessageControl.BubblePositionEnum.Right);
messageControl1.Add(x.ToString("00") + ": Testing is fun.",
MessageControl.BubblePositionEnum.Left);
}
It underlines "Add".