Skip to content

Instantly share code, notes, and snippets.

@maxclaus
Last active December 31, 2015 15:19
Show Gist options
  • Save maxclaus/8005735 to your computer and use it in GitHub Desktop.
Save maxclaus/8005735 to your computer and use it in GitHub Desktop.
Example of Principle Tell don't Ask
private class Screen
{
Form mainForm = ...
private void Screen_Loaded(object sender, ControlLoadedEventArgs e)
{
if(mainForm.InputControls != null && mainForm.InputControls.Contains("Id"))
mainForm.InputControls["Id"].Editable = isEditable;
}
}
private class Screen
{
Form mainForm = ...
private void Screen_Loaded(object sender, ControlLoadedEventArgs e)
{
mainForm.SetControlEditable("Id");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment