protected override void OnClick()
{
string straboPath = Environment.GetEnvironmentVariable(ArcStrabo2Extension.EnvironmentVariableSTRABO_HOME, EnvironmentVariableTarget.User);
if (!string.IsNullOrEmpty(straboPath))
{
ArcMap.Application.CurrentTool = null;
MessageBox.Show(straboPath);
}
else
MessageBox.Show(ArcStrabo2Extension.ErrorMsgNoStraboHome);
}