我被卡住了...我试图通过在我的项目中使用幻灯片来避免改变路线的事实。当用户在我的主页面上时,他可以选择进入配置页面,在这个页面中他可以找到一个按钮来调用我的主页但是我也可以刷卡而我想取消这个你知道怎么做吗? / p>
调用配置页//
<ListView x:Name="lv">
<ListView.ItemContainerStyle>
<Style TargetType="ListViewItem">
<Setter Property="Background" Value="Black" />
<Setter Property="HorizontalContentAlignment" Value="Stretch"/>
<Setter Property="VerticalContentAlignment" Value="Stretch"/>
</Style>
</ListView.ItemContainerStyle>
<ListView.View>
<GridView>
<GridView.Columns>
<GridViewColumn x:Name="Header" Header="MyHeader">
<GridViewColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding}"
Background ="Aquamarine" VerticalAlignment="Stretch" HorizontalAlignment="Stretch"
Margin="-6 0 -6 0">
<i:Interaction.Triggers>
<i:EventTrigger EventName="MouseLeftButtonUp">
<i:InvokeCommandAction Command="{Binding}"></i:InvokeCommandAction>
</i:EventTrigger>
</i:Interaction.Triggers>
</TextBlock>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
</GridView.Columns>
</GridView>
</ListView.View>
</ListView>
和
gotoConfig() {
this.state.switch_auto = false;
if (this.state.appState == "active")
this.props.navigator.push({
component: config,
passProps: {
id: '3',
name: 'page_de_config',
},
nameForButton : 'config',
})
}
非常感谢