ボタンにパスを入力して、範囲外の例外を取得しようとしています。ビューでモデルのプロパティにバインドしています。プロパティのコードは次のとおりです。
public PunishmentName Name { get; set; }
public Geometry IconData
{
get
{
string data = "";
switch (Name)
{
case PunishmentName.Freeze:
data = "M 0 0 Q 10 10 20 0";
break;
}
Path path = XamlReader.Load("<Path " + "xmlns=" + "'" + "http://schemas.microsoft.com/winfx/2006/xaml/presentation" + "'" + " Data= '" + data + " '/>") as Path;
Geometry geometry = path.Data;
return geometry;
}
}
ビュー内のボタンのコード
<Button Grid.Row="1" BorderBrush="Transparent" >
<Viewbox>
<Path Data="{Binding Punishment.IconData}"/>
</Viewbox>
</Button>
私はこの質問を知っています: 既にここで尋ねられています: Windows Phone 7: How to parse Bezier Path string like in XAML?
パスをグリッドとキャンバスにも入れてみましたが、結果は同じでした。
しかし、それはそこで解決されません...そして、私はここにいるのは初めてなので、コメントすることはできず、答えとして質問をするのが苦手です。私はここで立ち往生しています。回避策を考えることができますが、それはより多くの作業と醜いコードを意味します...
例外:
{System.Windows.ApplicationUnhandledExceptionEventArgs}
base: {System.Windows.ApplicationUnhandledExceptionEventArgs}
ExceptionObject: {System.ArgumentException: Value does not fall within the expected range.
at MS.Internal.XcpImports.CheckHResult(UInt32 hr)
at MS.Internal.XcpImports.SetValue(IManagedPeerBase obj, DependencyProperty property, DependencyObject doh)
at MS.Internal.XcpImports.SetValue(IManagedPeerBase doh, DependencyProperty property, Object obj)
at System.Windows.DependencyObject.SetObjectValueToCore(DependencyProperty dp, Object value)
at System.Windows.DependencyObject.SetEffectiveValue(DependencyProperty property, EffectiveValueEntry& newEntry, Object newValue)
at System.Windows.DependencyObject.UpdateEffectiveValue(DependencyProperty property, EffectiveValueEntry oldEntry, EffectiveValueEntry& newEntry, ValueOperation operation)
at System.Windows.DependencyObject.RefreshExpression(DependencyProperty dp)
at System.Windows.Data.BindingExpression.SendDataToTarget()
at System.Windows.Data.BindingExpression.SourceAcquired()
at System.Windows.Data.BindingExpression.System.Windows.IDataContextChangedListener.OnDataContextChanged(Object sender, DataContextChangedEventArgs e)
at System.Windows.Data.BindingExpression.DataContextChanged(Object sender, DataContextChangedEventArgs e)
at System.Windows.FrameworkElement.OnDataContextChanged(DataContextChangedEventArgs e)
at System.Windows.FrameworkElement.OnAncestorDataContextChanged(DataContextChangedEventArgs e)
at System.Windows.FrameworkElement.NotifyDataContextChanged(DataContextChangedEventArgs e)
at System.Windows.FrameworkElement.OnAncestorDataContextChanged(DataContextChangedEventArgs e)
at System.Windows.FrameworkElement.NotifyDataContextChanged(DataContextChangedEventArgs e)
at System.Windows.FrameworkElement.OnTreeParentUpdated(DependencyObject newParent, Boolean bIsNewParentAlive)
at System.Windows.DependencyObject.UpdateTreeParent(IManagedPeer oldParent, IManagedPeer newParent, Boolean bIsNewParentAlive, Boolean keepReferenceToParent)
at MS.Internal.FrameworkCallbacks.ManagedPeerTreeUpdate(IntPtr oldParentElement, IntPtr parentElement, IntPtr childElement, Byte bIsParentAlive, Byte bKeepReferenceToParent, Byte bCanCreateParent)}
Handled: false
Geometry.Parse を使用して WPF アプリケーションでまったく同じことを行いましたが、これはまだ電話では利用できません...