protected override bool Bind() { if (ModelView == null) { return(false); } m_Action = ModelView.FindAction(Path); m_IsCommandFound = m_Action != null; return(m_IsCommandFound); }
protected virtual Property FindProperty() { return(ModelView == null ? null : ModelView.FindProperty(Path)); }
protected virtual Collection FindCollection() { return(ModelView == null ? null : ModelView.FindCollection(Path)); }