// // Copyright 2014 Perforce Software Inc. // using System.Windows.Controls; namespace Perforce.View { /// /// Interaction logic for PendingView.xaml /// public partial class PendingView : UserControl, SidebarView { public PendingView() { InitializeComponent(); } public Grid ListingGrid { get { return MainGrid; } set { MainGrid = value; } } } }