using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; using Signum.Entities.DynamicQuery; using Signum.Utilities; namespace Signum.Windows { public partial class QueryTokenRenderer : UserControl { public static readonly DependencyProperty TokenProperty = DependencyProperty.Register("Token", typeof(QueryToken), typeof(QueryTokenRenderer), new UIPropertyMetadata((d, e) => ((QueryTokenRenderer)d).SetTokens((QueryToken)e.NewValue))); public QueryToken Token { get { return (QueryToken)GetValue(TokenProperty); } set { SetValue(TokenProperty, value); } } private void SetTokens(QueryToken token) { itemsControl.ItemsSource = token.FollowC(a => a.Parent).Reverse().ToArray(); } public QueryTokenRenderer() { InitializeComponent(); } } }
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.
This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)
The Next Version of Android - Some of What's Coming