为什么不能将依赖项注入ContentPage?

时间:2019-09-11 15:27:57

标签: xaml xamarin.forms ioc-container tinyioc

请参见下面的代码:

public partial class MyContentPage : ContentPage
    {

        public CreditCardView()
        {
            InitializeComponent();
        }
}

它按预期工作。现在说我想注入一个依赖:

public partial class MyContentPage : ContentPage
    {
        private readonly IMyService _myService;

        public CreditCardView(IMyService myService)
        {
            InitializeComponent();
            _myService=myService;
        }
}

在第二段代码中,我看到一个编译错误:“字典中不存在给定的键”。问题是什么?我已经注册了家属。

0 个答案:

没有答案