Adding Filter text box to existing grid (MES), now a grid sizing question

So for anyone interested in how I fixed the grid anchoring issue, I added this code using the event wizard for load. Then I adjusted the sizing to the screen to match what I needed when the screen opened. It seems to stay anchored in the right place after that. I’m not sure why it works, but it did. (and this problem still happens in 10.1.600.5, I thought they had fixed this, but they didn’t).

	private void WorkQueueForm_Load(object sender, EventArgs args)
	{
		// Add Event Handler Code
ActiveWorkGrid.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Right);

	}