The error I see is that you don't define the variable _button in your class declaration.
Try this:
interface ICaseStageTransitionControlView: IControlView
{
Button PassButtonToControl { get; set;}
}
public partial class CaseStageTransitionControl : ICaseStageTransitionControlView
{
public Button PassButtonToControl { get; set; }
}
Discussion: This assumes that you've done the right thing to implement whatever the IControlView interface requires.