aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/Controls/DbTableView.xaml.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-01-14 16:16:08 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-01-14 16:16:08 +0200
commit0bd3760bec105a00efa0fe624da2eb82d85d06c9 (patch)
tree5ff2c6994a32da9a94571dd653de825f218f51d3 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/Controls/DbTableView.xaml.cs
parentbcdbd113e628e9d69982b16e543bd139f7e22f3f (diff)
downloadTango-0bd3760bec105a00efa0fe624da2eb82d85d06c9.tar.gz
Tango-0bd3760bec105a00efa0fe624da2eb82d85d06c9.zip
Added code comments for:
MachineStudio.DB
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/Controls/DbTableView.xaml.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/Controls/DbTableView.xaml.cs10
1 files changed, 9 insertions, 1 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/Controls/DbTableView.xaml.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/Controls/DbTableView.xaml.cs
index 9ae14952b..8d2a44213 100644
--- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/Controls/DbTableView.xaml.cs
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/Controls/DbTableView.xaml.cs
@@ -17,11 +17,16 @@ using System.Windows.Shapes;
namespace Tango.MachineStudio.DB.Controls
{
/// <summary>
- /// Interaction logic for DbTableView.xaml
+ /// Represents a database table view wrapper.
/// </summary>
+ /// <seealso cref="System.Windows.Controls.UserControl" />
+ /// <seealso cref="System.Windows.Markup.IComponentConnector" />
[ContentProperty(nameof(MainContent))]
public partial class DbTableView : UserControl
{
+ /// <summary>
+ /// Gets or sets the data table view.
+ /// </summary>
public FrameworkElement MainContent
{
get { return (FrameworkElement)GetValue(MainContentProperty); }
@@ -30,6 +35,9 @@ namespace Tango.MachineStudio.DB.Controls
public static readonly DependencyProperty MainContentProperty =
DependencyProperty.Register("MainContent", typeof(FrameworkElement), typeof(DbTableView), new PropertyMetadata(null));
+ /// <summary>
+ /// Initializes a new instance of the <see cref="DbTableView"/> class.
+ /// </summary>
public DbTableView()
{
InitializeComponent();