我有类似的类结构:
Class ReportSection
...
End Class
Class ReportContent
Inhertis ReportSection
...
Public Overridable Function MyFunction() as Boolean
End Class
Class ReportGrouping
Inhertis ReportContent
...
Public Overrides Function MyFunction() as Boolean
End Class
For Context:这些类用于在wpf项目中定义依赖项属性,其中ReportGrouping是ReportContent的依赖项属性。以下是层次结构的简化示例:
<kr:ReportContent>
<kr:ReportContent.Body>
<kr:ReportGrouping>
<kr:ReportGrouping.Body>
</kr:ReportGrouping.Body >
</kr:ReportGrouping >
</kr:ReportContent.Body >
</kr:ReportContent >
问题在于,如果我将ReportGroup添加到ReportContent,那么即使我在ReportContent类中调用该函数,也会调用ReportGroup中的Function。
我需要帮助以确保在从ReportContent调用时从ReportContent调用MyFunction,并在ReportGroup调用它时从ReportGroup调用。
我尝试将功能更改为受保护而不是公共 - 同样的问题