0

我有一个 Windows Phone 运行时应用程序,使用 Expression Blend 生成设计时数据很累。问题是我的一些类嵌套类和设计数据将无法编译。这是我用来生成设计时数据的类。

public class stats
{
    public class Pageviews
    {
        public int regular { get; set; }
        public int threat { get; set; }
        public int crawler { get; set; }
    }

    public class Uniques
    {
        public int regular { get; set; }
        public int threat { get; set; }
        public int crawler { get; set; }
    }

    public class TrafficBreakdown
    {
        public Pageviews pageviews { get; set; }
        public bool estimated { get; set; }
        public Uniques uniques { get; set; }
    }

    public class BandwidthServed
    {
        public double cloudflare { get; set; }
        public double user { get; set; }
    }

    public class RequestsServed
    {
        public int cloudflare { get; set; }
        public int user { get; set; }
    }

    public class Obj
    {
        public long cachedServerTime { get; set; }
        public long cachedExpryTime { get; set; }
        public TrafficBreakdown trafficBreakdown { get; set; }
        public BandwidthServed bandwidthServed { get; set; }
        public RequestsServed requestsServed { get; set; }
        public bool pro_zone { get; set; }
        public long currentServerTime { get; set; }
        public int interval { get; set; }
        public long zoneCDate { get; set; }
        public string userSecuritySetting { get; set; }
        public int dev_mode { get; set; }
        public int ipv46 { get; set; }
        public int ob { get; set; }
        public string cache_lvl { get; set; }
        public string outboundLinks { get; set; }
    }

    public class Result
    {
        public long timeZero { get; set; }
        public long timeEnd { get; set; }
        public int count { get; set; }
        public bool has_more { get; set; }
        public List<Obj> objs { get; set; }
    }

    public class Response
    {
        public Result result { get; set; }
    }

    public class RootObject
    {
        public Response response { get; set; }
        public string result { get; set; }
        public string msg { get; set; }
        public string err_code { get; set; }
    }
}

这是设计时 .xaml 文件。

<ViewModels:MainViewModel.Stats>
    <Data:stats+Obj cache_lvl="Adipiscing nam phasellus" dev_mode="83" ipv46="75" interval="55" ob="47" outboundLinks="Parturient class aliquam vestibulum vestibulum" pro_zone="False" userSecuritySetting="Cras vestibulum curabitur">
        <Data:stats+Obj.bandwidthServed>
            <Data:stats+BandwidthServed cloudflare="500.26" user="349.37"/>
        </Data:stats+Obj.bandwidthServed>
        <Data:stats+Obj.cachedServerTime>
            <System:Int64/>
        </Data:stats+Obj.cachedServerTime>
        <Data:stats+Obj.cachedExpryTime>
            <System:Int64/>
        </Data:stats+Obj.cachedExpryTime>
        <Data:stats+Obj.currentServerTime>
            <System:Int64/>
        </Data:stats+Obj.currentServerTime>
        <Data:stats+Obj.requestsServed>
            <Data:stats+RequestsServed cloudflare="18" user="44"/>
        </Data:stats+Obj.requestsServed>
        <Data:stats+Obj.trafficBreakdown>
            <Data:stats+TrafficBreakdown estimated="True">
                <Data:stats+TrafficBreakdown.pageviews>
                    <Data:stats+Pageviews crawler="10" regular="41" threat="19"/>
                </Data:stats+TrafficBreakdown.pageviews>
                <Data:stats+TrafficBreakdown.uniques>
                    <Data:stats+Uniques crawler="99" regular="66" threat="39"/>
                </Data:stats+TrafficBreakdown.uniques>
            </Data:stats+TrafficBreakdown>
        </Data:stats+Obj.trafficBreakdown>
        <Data:stats+Obj.zoneCDate>
            <System:Int64/>
        </Data:stats+Obj.zoneCDate>
    </Data:stats+Obj>
</ViewModels:MainViewModel.Stats>

它说 stats+.Obj 在名称中无效。有人有任何解决方案吗?

提前致谢。

4

3 回答 3

1

我看到的第一个问题是+XML 名称中的字符是非法的。

编辑:使用 Blend 中的“设计”选项卡从您的类中生成示例数据(只需单击“设计”选项卡中的“从类生成示例数据”并选择您的根类)。我使用您的课程生成的示例数据:

<App7:Obj.bandwidthServed>
  <App7:BandwidthServed cloudflare="130.23" user="116.56"/>
</App7:Obj.bandwidthServed>
<App7:Obj.cachedServerTime>
  <System:Int64/>
</App7:Obj.cachedServerTime>
<App7:Obj.cachedExpryTime>
  <System:Int64/>
</App7:Obj.cachedExpryTime>
<App7:Obj.currentServerTime>
  <System:Int64/>
</App7:Obj.currentServerTime>
<App7:Obj.requestsServed>
  <App7:RequestsServed cloudflare="78" user="56"/>
</App7:Obj.requestsServed>
<App7:Obj.trafficBreakdown>
  <App7:TrafficBreakdown estimated="True">
    <App7:TrafficBreakdown.pageviews>
      <App7:Pageviews crawler="75" regular="13" threat="11"/>
    </App7:TrafficBreakdown.pageviews>
    <App7:TrafficBreakdown.uniques>
      <App7:Uniques crawler="19" regular="76" threat="32"/>
    </App7:TrafficBreakdown.uniques>
  </App7:TrafficBreakdown>
</App7:Obj.trafficBreakdown>
<App7:Obj.zoneCDate>
  <System:Int64/>
</App7:Obj.zoneCDate>
于 2014-06-05T12:40:34.450 回答
1

为什么不直接使用 Page DataContext 并使用 POCO 在构造函数中创建假数据,如下所示。VS 2103 设计器在设计时完美显示数据。

这是 XAML

<Page.DataContext>
    <ViewModel:BookVM />
</Page.DataContext>

背后的代码

public class BookVM : ViewModelBase
{
    public BookVM()
    {
       if (IsInDesignMode)
       { 
          var books = new List<Book>();
          books.Add(new Book(){ Name = "Test"});
          books.Add(new Book(){ Name = "Test2"});
          books.Add(new Book(){ Name = "Test3"});

          Books = books;
      }
    }

    List<Person> _books;
    public List<Person> BookList
    {
        get{ return _books;}
        set
        {
           _books = value; 
            OnPropertyChanged();
        }
    }
} 

}

这是我的 ViewModelBase 类

public class ViewModelBase : INotifyPropertyChanged
{
    public bool IsInDesignMode
    {
        get 
        {
            return DesignMode.DesignModeEnabled; 
        }
    }

    bool _isBusy;
    public bool IsBusy
    {
        get 
        {
            return _isBusy;
        }
        set 
        {
            _isBusy = value;
            OnPropertyChanged();
        }
    }

    public event PropertyChangedEventHandler PropertyChanged;
    public void OnPropertyChanged([CallerMemberName]string propertyName="")
    {
        var handler = PropertyChanged;
        if (handler != null)
            handler(this, new PropertyChangedEventArgs(propertyName));
    }
}  
于 2014-06-05T17:55:48.723 回答
0

似乎当您的类声明位于另一个类声明(嵌套)中时,XAML 引擎将无法正确引用它。声明需要位于命名空间的根目录。我认为这是一个错误

于 2015-03-18T13:16:39.663 回答