だから私はWindows Phoneアプリに取り組んでおり、2つのスタックパネル(基本的にアプリの2つのメイン画面)間で要素を移動しようとしています.
次のようなピボット アイテムがあります。
<controls:Pivot Title="MY APPLICATION">
<!--Pivot item one-->
<controls:PivotItem Header="All Tokens">
<ListBox x:Name="AllTokenListBox" Margin="0,0,0,0">
<StackPanel x:Name="AllTokenStack"></StackPanel>
</ListBox>
</controls:PivotItem>
<!--Pivot item two-->
<controls:PivotItem Header="My Tokens">
<ListBox x:Name="MyTokenListBox" Margin="0,0,0,0">
<StackPanel x:Name="myTokenStack"></StackPanel>
</ListBox>
</controls:PivotItem>
</controls:Pivot>
AllTokenStack のアイテムがダブルタップされたら、それを myTokenStack に移動したいと考えています。これを行うと、プログラムがクラッシュし、「パラメーターが正しくありません」と表示されます。これは、デバッグ モードでない場合にのみ行われます (電話がコンピューターから取り外され、アプリを実行しようとした場合)。デバッグモードであれば正常に動作します。
オブジェクトを転送するために使用しているコードは次のとおりです。
private void container_Tap(object sender, GestureEventArgs e) {
if (AllTokenContainer.Children.Contains(this)) {
AllTokenContainer.Children.Remove(this);
MyTokenContainer.Children.Add(this);
}
}
この奇妙なバグを解決する方法を知っている人はいますか?
編集 明確にするためだけに。C# コードは、私が Token と呼んだクラス内にあります。Token クラスはユーザー コントロールです。ユーザーがタップしてイベントをトリガーするコントロールです。これは間違った方法ですか?
例外からのスタックトレース:
at MS.Internal.XcpImports.CheckHResult(UInt32 hr)
at MS.Internal.XcpImports.Collection_AddValue[T](PresentationFrameworkCollection`1 collection, CValue value)
at MS.Internal.XcpImports.Collection_AddDependencyObject[T](PresentationFrameworkCollection`1 collection, DependencyObject value)
at System.Windows.PresentationFrameworkCollection`1.AddDependencyObject(DependencyObject value)
at System.Windows.Controls.UIElementCollection.AddInternal(UIElement value)
at System.Windows.PresentationFrameworkCollection`1.Add(UIElement value)
at MTG_Token_Tracker.TokenGraphic.container_Tap(Object sender, GestureEventArgs e)
at MS.Internal.CoreInvokeHandler.InvokeEventHandler(Int32 typeIndex, Delegate handlerDelegate, Object sender, Object args)
at MS.Internal.JoltHelper.FireEvent(IntPtr unmanagedObj, IntPtr unmanagedObjArgs, Int32 argsTypeIndex, Int32 actualArgsTypeIndex, String eventName)