0

有没有人尝试过用 VB 实现 ICommandSource?微软提供的例子是用C#编写的,由于VB不允许隐式实现,所以这个接口在VB中是无法实现的!!

http://msdn.microsoft.com/en-us/library/ms771361.aspx

4

1 回答 1

1

这取决于您要在哪个类上实现它。如果您在自己的类(实现接口的地方)中引入 Command、CommandParameter 和 CommandTarget 属性,则可以像任何其他接口一样实现它:

Public ReadOnly Property Command() As ICommand
  Implements ICommandSource.Command
  Get
    ' implementation goes here
  End Get
End Property

顺便说一句,您仍然可以使用 DP 来实现:Implements 指令位于 CLR 属性上,并且不会干扰 getter 和 setter 的“不接触”实现。

如果要在其上实现它的类已经具有(继承的)Command、CommandParameter 和 CommandTarget 属性,并且您希望接口实现重用这些属性,则需要创建具有新名称的新属性,将它们声明为接口实现并返回将它们放到现有的属性上

Public ReadOnly Property ICommandSource_Command() As ICommand
  Implements ICommandSource.Command
  Get
    Return Me.Command  ' the existing implementation that can't be made implicit
  End Get
End Property
于 2010-01-07T23:00:35.443 回答