0

ボタンにパスを入力して、範囲外の例外を取得しようとしています。ビューでモデルのプロパティにバインドしています。プロパティのコードは次のとおりです。

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 アプリケーションでまったく同じことを行いましたが、これはまだ電話では利用できません...

4

2 に答える 2

0

Romasz が答えた。Geometry にバインドする必要はありません。文字列は完全に問題ありません...WPFタフで必要だと思ったので、混乱しました... Romaszに感謝します

于 2014-09-24T21:24:07.430 に答える
0

どこが間違っているかを確認するには、残りのコードを提供する必要があると思います。Windows Phone 8.1 WinRT 用に次のコードを書きましたが、問題なく動作しました。

<Grid>
    <Button Grid.Row="1" BorderBrush="Transparent" >
        <Viewbox>
            <Path Data="{Binding IconData}"/>
        </Viewbox>
    </Button>
</Grid>



public sealed partial class MainPage : Page
{
    public MainPage()
    {
        this.InitializeComponent();
        this.NavigationCacheMode = NavigationCacheMode.Required;
        Punishment MyPunishment = new Punishment();
        MyPunishment.Name = Punishment.PunishmentName.Freeze;
        this.DataContext = MyPunishment;
    }
}

public class Punishment
{
    public enum PunishmentName { Freeze, Burn };
    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;
        }
    }
}
于 2014-09-24T18:56:29.090 に答える