xamarin.forms如何刷新内容视图和内容页面?

时间:2016-10-22 16:55:07

标签: xamarin.forms

我在CREATE FUNCTION createXML() RETURNS trigger AS $createXML$ BEGIN if new.modified_dttm is null then COPY(select query_to_xml('select * from table where modified_dttm is null',true,true,'')) to 'c:/Program Files/PostgreSQL/9.6/data/xml123.xml'; RETURN new; END IF; END; $createXML$ LANGUAGE plpgsql; 中有ContentView。我从CarouselPage导航到ConentPage。更新ContentView并返回ContentPage

现在,在此注释中,我的ContentView未获得更新。

此外,如果我在ContentView的条目中更改文字并转到ContentView并返回,则我的条目更改将被删除。

那么,有没有任何机制可以让我回到ContentPage时得到刷新?

我尝试在ContentView中使用OnAppearing()方法,但它显示的错误类似于ContentView

谢谢。 :)

1 个答案:

答案 0 :(得分:0)

在内部运行代码

Device.BeginInvokeOnMainThread(async () =>
{
   ///Code to update view here
});