How do you specify a different base class in .xaml files (Silverlight)?

后端 未结 2 2039
眼角桃花
眼角桃花 2020-12-17 16:08

How can you specify a common base class in .xaml files for seperate Silverlight Page classes? I have a few common properties that I would like to share across pages, but I d

2条回答
  •  庸人自扰
    2020-12-17 17:07

    Also: when your base class is in an other assembly (project) you can do this:

    xmlns:Custom="clr-namespace:SilverlightApplication1;assembly=[Other.Assembly]"

提交回复
热议问题