You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
709 B
28 lines
709 B
using System; |
|
using System.Collections.Generic; |
|
using System.ComponentModel; |
|
using System.Drawing; |
|
using System.Data; |
|
using System.Text; |
|
using System.Windows.Forms; |
|
using ArducopterConfigurator.PresentationModels; |
|
|
|
namespace ArducopterConfigurator.Views |
|
{ |
|
public partial class MotorCommandsView : MotorCommandsViewDesignable |
|
{ |
|
public MotorCommandsView() |
|
{ |
|
InitializeComponent(); |
|
} |
|
|
|
public override void SetDataContext(MotorCommandsVm model) |
|
{ |
|
|
|
} |
|
|
|
|
|
} |
|
// Required for VS2008 designer. No functional value |
|
public class MotorCommandsViewDesignable : ViewCommon<MotorCommandsVm> { } |
|
}
|
|
|