mirror of
https://github.com/DevExpress/netcore-winforms-demos.git
synced 2025-12-25 19:07:30 +00:00
11 lines
292 B
C#
11 lines
292 B
C#
namespace DevExpress.DevAV.Modules {
|
|
using DevExpress.XtraBars.Ribbon;
|
|
|
|
public interface IRibbonModule {
|
|
RibbonControl Ribbon { get; }
|
|
}
|
|
public interface ISupportViewModel {
|
|
object ViewModel { get; }
|
|
void ParentViewModelAttached();
|
|
}
|
|
} |