# C1.Win.Ribbon.RibbonControlHost

## Content

<div class="doc-site-dotnet-api-container">



  <h1 id="C1_Win_Ribbon_RibbonControlHost" data-uid="C1.Win.Ribbon.RibbonControlHost" class="text-break">RibbonControlHost Class
</h1>
  <div class="markdown level0 summary"><p>Represents a control host in a <a class="xref" href="C1.Win.Ribbon.C1Ribbon.html">C1Ribbon</a> control.</p>
</div>
  <div class="markdown level0 conceptual"></div>
  <div class="inheritance">
    <h5>Inheritance</h5>
    <div class="level0"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></div>
    <div class="level1"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.marshalbyrefobject">MarshalByRefObject</a></div>
    <div class="level2"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.componentmodel.component">Component</a></div>
    <div class="level3"><a class="xref" href="C1.Win.Ribbon.RibbonItem.html">RibbonItem</a></div>
    <div class="level4"><span class="xref">RibbonControlHost</span></div>
  </div>
  <div class="implements">
    <h5>Implements</h5>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.componentmodel.icomponent">IComponent</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.idisposable">IDisposable</a></div>
  </div>
  <h6><strong>Namespace</strong>: <a class="xref" href="C1.Win.Ribbon.html">C1.Win.Ribbon</a></h6>
  <h6><strong>Assembly</strong>: C1.Win.Ribbon.10.dll</h6>
  <h5 id="C1_Win_Ribbon_RibbonControlHost_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">public class RibbonControlHost : RibbonItem, IComponent, IDisposable</code></pre>
  </div>
  <div class="codewrapper">
    <pre><code class="lang-vbnet hljs">Public Class RibbonControlHost
    Inherits RibbonItem
    Implements IComponent, IDisposable</code></pre>
  </div>
  <h5 id="C1_Win_Ribbon_RibbonControlHost_examples"><strong>Examples</strong></h5>
  <p>
  The following code example shows how to support keyboard navigation for a custom <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.html">RibbonControlHost</a>.
</p>
<pre><code class="lang-csharp">public class CustomControlHost : RibbonControlHost
{
	public CustomControlHost() : base(new MyTextBox()) { }

	private class MyTextBox : TextBox
	{
		protected override bool IsInputKey(Keys keyData)
		{
			if (Parent is C1Ribbon ribbon)
            	return ribbon.IsInputKey(this, keyData);
            return base.IsInputKey(keyData);
		}
	}
}</code></pre>

  <h3 id="constructors">Constructors
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost__ctor" data-uid="C1.Win.Ribbon.RibbonControlHost.#ctor">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.-ctor.html#C1_Win_Ribbon_RibbonControlHost__ctor">RibbonControlHost()</a>
        </td>
        <td class="markdown level1 summary"><p>Initializes a new instance of an <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.html">RibbonControlHost</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost__ctor_System_Windows_Forms_Control_" data-uid="C1.Win.Ribbon.RibbonControlHost.#ctor(System.Windows.Forms.Control)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.-ctor.html#C1_Win_Ribbon_RibbonControlHost__ctor_System_Windows_Forms_Control_">RibbonControlHost(Control)</a>
        </td>
        <td class="markdown level1 summary"><p>Initializes a new instance of an <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.html">RibbonControlHost</a>.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="properties">Properties
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_BackColor" data-uid="C1.Win.Ribbon.RibbonControlHost.BackColor">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.BackColor.html#C1_Win_Ribbon_RibbonControlHost_BackColor">BackColor</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the background color for the hosted control.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_BackgroundImage" data-uid="C1.Win.Ribbon.RibbonControlHost.BackgroundImage">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.BackgroundImage.html#C1_Win_Ribbon_RibbonControlHost_BackgroundImage">BackgroundImage</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the background image displayed in the hosted control.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_BackgroundImageLayout" data-uid="C1.Win.Ribbon.RibbonControlHost.BackgroundImageLayout">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.BackgroundImageLayout.html#C1_Win_Ribbon_RibbonControlHost_BackgroundImageLayout">BackgroundImageLayout</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the background image layout used for the hosted control.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_CanFocus" data-uid="C1.Win.Ribbon.RibbonControlHost.CanFocus">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.CanFocus.html#C1_Win_Ribbon_RibbonControlHost_CanFocus">CanFocus</a>
        </td>
        <td class="markdown level1 summary"><p>Gets a value indicating whether the hosted control can receive focus.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_CanSelect" data-uid="C1.Win.Ribbon.RibbonControlHost.CanSelect">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.CanSelect.html#C1_Win_Ribbon_RibbonControlHost_CanSelect">CanSelect</a>
        </td>
        <td class="markdown level1 summary"><p>Gets a value indicating whether the hosted control can be selected.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_CausesValidation" data-uid="C1.Win.Ribbon.RibbonControlHost.CausesValidation">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.CausesValidation.html#C1_Win_Ribbon_RibbonControlHost_CausesValidation">CausesValidation</a>
        </td>
        <td class="markdown level1 summary"><p>Indicates whether the hosted control raises validation events.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_Control" data-uid="C1.Win.Ribbon.RibbonControlHost.Control">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.Control.html#C1_Win_Ribbon_RibbonControlHost_Control">Control</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the control that this <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.html">RibbonControlHost</a> is hosting.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_ControlHostNodeName" data-uid="C1.Win.Ribbon.RibbonControlHost.ControlHostNodeName">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.ControlHostNodeName.html#C1_Win_Ribbon_RibbonControlHost_ControlHostNodeName">ControlHostNodeName</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the name of an XML node when serializing the component to XML.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_Focused" data-uid="C1.Win.Ribbon.RibbonControlHost.Focused">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.Focused.html#C1_Win_Ribbon_RibbonControlHost_Focused">Focused</a>
        </td>
        <td class="markdown level1 summary"><p>Gets a value indicating whether the hosted control has input focus.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_Font" data-uid="C1.Win.Ribbon.RibbonControlHost.Font">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.Font.html#C1_Win_Ribbon_RibbonControlHost_Font">Font</a>
        </td>
        <td class="markdown level1 summary"><p>The font used to display text in the hosted control.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_ForeColor" data-uid="C1.Win.Ribbon.RibbonControlHost.ForeColor">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.ForeColor.html#C1_Win_Ribbon_RibbonControlHost_ForeColor">ForeColor</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the foreground color for the hosted control.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_Height" data-uid="C1.Win.Ribbon.RibbonControlHost.Height">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.Height.html#C1_Win_Ribbon_RibbonControlHost_Height">Height</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the height of the hosted control.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_RightToLeft" data-uid="C1.Win.Ribbon.RibbonControlHost.RightToLeft">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.RightToLeft.html#C1_Win_Ribbon_RibbonControlHost_RightToLeft">RightToLeft</a>
        </td>
        <td class="markdown level1 summary"><p>Indicates whether the hosted control should draw right-to-left for RTL languages.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_ShowInMore" data-uid="C1.Win.Ribbon.RibbonControlHost.ShowInMore">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.ShowInMore.html#C1_Win_Ribbon_RibbonControlHost_ShowInMore">ShowInMore</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating if this <a class="xref" href="C1.Win.Ribbon.RibbonItem.html">RibbonItem</a> can be shown in drop down part of the More button when ribbon is simplified.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_Text" data-uid="C1.Win.Ribbon.RibbonControlHost.Text">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.Text.html#C1_Win_Ribbon_RibbonControlHost_Text">Text</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the text associated with the hosted control.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_Width" data-uid="C1.Win.Ribbon.RibbonControlHost.Width">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.Width.html#C1_Win_Ribbon_RibbonControlHost_Width">Width</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the width of the hosted control.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="methods">Methods
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_Focus" data-uid="C1.Win.Ribbon.RibbonControlHost.Focus">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.Focus.html#C1_Win_Ribbon_RibbonControlHost_Focus">Focus()</a>
        </td>
        <td class="markdown level1 summary"><p>Gives the focus to the hosted control.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_LoadControlHostProperties_System_Xml_XmlNode_" data-uid="C1.Win.Ribbon.RibbonControlHost.LoadControlHostProperties(System.Xml.XmlNode)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.LoadControlHostProperties.html#C1_Win_Ribbon_RibbonControlHost_LoadControlHostProperties_System_Xml_XmlNode_">LoadControlHostProperties(XmlNode)</a>
        </td>
        <td class="markdown level1 summary"><p>Loads properties of an <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.html">RibbonControlHost</a> from the specified XmlNode.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnBackColorChanged_System_EventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnBackColorChanged(System.EventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnBackColorChanged.html#C1_Win_Ribbon_RibbonControlHost_OnBackColorChanged_System_EventArgs_">OnBackColorChanged(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.BackColorChanged.html">BackColorChanged</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnClick_System_EventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnClick(System.EventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnClick.html#C1_Win_Ribbon_RibbonControlHost_OnClick_System_EventArgs_">OnClick(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.Click.html">Click</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnDoubleClick_System_EventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnDoubleClick(System.EventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnDoubleClick.html#C1_Win_Ribbon_RibbonControlHost_OnDoubleClick_System_EventArgs_">OnDoubleClick(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.DoubleClick.html">DoubleClick</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnDragDrop_System_Windows_Forms_DragEventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnDragDrop(System.Windows.Forms.DragEventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnDragDrop.html#C1_Win_Ribbon_RibbonControlHost_OnDragDrop_System_Windows_Forms_DragEventArgs_">OnDragDrop(DragEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.DragDrop.html">DragDrop</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnDragEnter_System_Windows_Forms_DragEventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnDragEnter(System.Windows.Forms.DragEventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnDragEnter.html#C1_Win_Ribbon_RibbonControlHost_OnDragEnter_System_Windows_Forms_DragEventArgs_">OnDragEnter(DragEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.DragEnter.html">DragEnter</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnDragLeave_System_EventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnDragLeave(System.EventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnDragLeave.html#C1_Win_Ribbon_RibbonControlHost_OnDragLeave_System_EventArgs_">OnDragLeave(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.DragLeave.html">DragLeave</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnDragOver_System_Windows_Forms_DragEventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnDragOver(System.Windows.Forms.DragEventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnDragOver.html#C1_Win_Ribbon_RibbonControlHost_OnDragOver_System_Windows_Forms_DragEventArgs_">OnDragOver(DragEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.DragOver.html">DragOver</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnEnabledChanged_System_EventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnEnabledChanged(System.EventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnEnabledChanged.html#C1_Win_Ribbon_RibbonControlHost_OnEnabledChanged_System_EventArgs_">OnEnabledChanged(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.EnabledChanged.html">EnabledChanged</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnEnter_System_EventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnEnter(System.EventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnEnter.html#C1_Win_Ribbon_RibbonControlHost_OnEnter_System_EventArgs_">OnEnter(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.Enter.html">Enter</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnForeColorChanged_System_EventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnForeColorChanged(System.EventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnForeColorChanged.html#C1_Win_Ribbon_RibbonControlHost_OnForeColorChanged_System_EventArgs_">OnForeColorChanged(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.ForeColorChanged.html">ForeColorChanged</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnGiveFeedback_System_Windows_Forms_GiveFeedbackEventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnGiveFeedback(System.Windows.Forms.GiveFeedbackEventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnGiveFeedback.html#C1_Win_Ribbon_RibbonControlHost_OnGiveFeedback_System_Windows_Forms_GiveFeedbackEventArgs_">OnGiveFeedback(GiveFeedbackEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.GiveFeedback.html">GiveFeedback</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnGotFocus_System_EventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnGotFocus(System.EventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnGotFocus.html#C1_Win_Ribbon_RibbonControlHost_OnGotFocus_System_EventArgs_">OnGotFocus(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.GotFocus.html">GotFocus</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnKeyDown_System_Windows_Forms_KeyEventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnKeyDown.html#C1_Win_Ribbon_RibbonControlHost_OnKeyDown_System_Windows_Forms_KeyEventArgs_">OnKeyDown(KeyEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.KeyDown.html">KeyDown</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnKeyPress_System_Windows_Forms_KeyPressEventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnKeyPress.html#C1_Win_Ribbon_RibbonControlHost_OnKeyPress_System_Windows_Forms_KeyPressEventArgs_">OnKeyPress(KeyPressEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.KeyPress.html">KeyPress</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnKeyUp_System_Windows_Forms_KeyEventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnKeyUp(System.Windows.Forms.KeyEventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnKeyUp.html#C1_Win_Ribbon_RibbonControlHost_OnKeyUp_System_Windows_Forms_KeyEventArgs_">OnKeyUp(KeyEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.KeyUp.html">KeyUp</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnLeave_System_EventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnLeave(System.EventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnLeave.html#C1_Win_Ribbon_RibbonControlHost_OnLeave_System_EventArgs_">OnLeave(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.Leave.html">Leave</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnLostFocus_System_EventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnLostFocus(System.EventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnLostFocus.html#C1_Win_Ribbon_RibbonControlHost_OnLostFocus_System_EventArgs_">OnLostFocus(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.LostFocus.html">LostFocus</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnMouseDown_System_Windows_Forms_MouseEventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnMouseDown.html#C1_Win_Ribbon_RibbonControlHost_OnMouseDown_System_Windows_Forms_MouseEventArgs_">OnMouseDown(MouseEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.MouseDown.html">MouseDown</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnMouseHover_System_EventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnMouseHover(System.EventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnMouseHover.html#C1_Win_Ribbon_RibbonControlHost_OnMouseHover_System_EventArgs_">OnMouseHover(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.MouseHover.html">MouseHover</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnMouseMove_System_Windows_Forms_MouseEventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnMouseMove.html#C1_Win_Ribbon_RibbonControlHost_OnMouseMove_System_Windows_Forms_MouseEventArgs_">OnMouseMove(MouseEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.MouseMove.html">MouseMove</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnMouseUp_System_Windows_Forms_MouseEventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnMouseUp.html#C1_Win_Ribbon_RibbonControlHost_OnMouseUp_System_Windows_Forms_MouseEventArgs_">OnMouseUp(MouseEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.MouseUp.html">MouseUp</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnPaint_System_Windows_Forms_PaintEventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnPaint(System.Windows.Forms.PaintEventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnPaint.html#C1_Win_Ribbon_RibbonControlHost_OnPaint_System_Windows_Forms_PaintEventArgs_">OnPaint(PaintEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.Paint.html">Paint</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnQueryContinueDrag_System_Windows_Forms_QueryContinueDragEventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnQueryContinueDrag(System.Windows.Forms.QueryContinueDragEventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnQueryContinueDrag.html#C1_Win_Ribbon_RibbonControlHost_OnQueryContinueDrag_System_Windows_Forms_QueryContinueDragEventArgs_">OnQueryContinueDrag(QueryContinueDragEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.QueryContinueDrag.html">QueryContinueDrag</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnResize_System_EventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnResize(System.EventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnResize.html#C1_Win_Ribbon_RibbonControlHost_OnResize_System_EventArgs_">OnResize(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.Resize.html">Resize</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnRightToLeftChanged_System_EventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnRightToLeftChanged(System.EventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnRightToLeftChanged.html#C1_Win_Ribbon_RibbonControlHost_OnRightToLeftChanged_System_EventArgs_">OnRightToLeftChanged(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.RightToLeftChanged.html">RightToLeftChanged</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnSubscribeControlEvents_System_Windows_Forms_Control_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnSubscribeControlEvents(System.Windows.Forms.Control)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnSubscribeControlEvents.html#C1_Win_Ribbon_RibbonControlHost_OnSubscribeControlEvents_System_Windows_Forms_Control_">OnSubscribeControlEvents(Control)</a>
        </td>
        <td class="markdown level1 summary"><p>Subscribes events from the hosted control.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnTextChanged_System_EventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnTextChanged(System.EventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnTextChanged.html#C1_Win_Ribbon_RibbonControlHost_OnTextChanged_System_EventArgs_">OnTextChanged(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.TextChanged.html">TextChanged</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnUnsubscribeControlEvents_System_Windows_Forms_Control_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnUnsubscribeControlEvents(System.Windows.Forms.Control)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnUnsubscribeControlEvents.html#C1_Win_Ribbon_RibbonControlHost_OnUnsubscribeControlEvents_System_Windows_Forms_Control_">OnUnsubscribeControlEvents(Control)</a>
        </td>
        <td class="markdown level1 summary"><p>Unsubscribes events from the hosted control.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnValidated_System_EventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnValidated(System.EventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnValidated.html#C1_Win_Ribbon_RibbonControlHost_OnValidated_System_EventArgs_">OnValidated(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.Validated.html">Validated</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnValidating_System_ComponentModel_CancelEventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnValidating(System.ComponentModel.CancelEventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnValidating.html#C1_Win_Ribbon_RibbonControlHost_OnValidating_System_ComponentModel_CancelEventArgs_">OnValidating(CancelEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.Validating.html">Validating</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_OnVisibleChanged_System_EventArgs_" data-uid="C1.Win.Ribbon.RibbonControlHost.OnVisibleChanged(System.EventArgs)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.OnVisibleChanged.html#C1_Win_Ribbon_RibbonControlHost_OnVisibleChanged_System_EventArgs_">OnVisibleChanged(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.VisibleChanged.html">VisibleChanged</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_ResetBackColor" data-uid="C1.Win.Ribbon.RibbonControlHost.ResetBackColor">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.ResetBackColor.html#C1_Win_Ribbon_RibbonControlHost_ResetBackColor">ResetBackColor()</a>
        </td>
        <td class="markdown level1 summary"><p>This member is for internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_ResetFont" data-uid="C1.Win.Ribbon.RibbonControlHost.ResetFont">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.ResetFont.html#C1_Win_Ribbon_RibbonControlHost_ResetFont">ResetFont()</a>
        </td>
        <td class="markdown level1 summary"><p>This member is for internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_ResetForeColor" data-uid="C1.Win.Ribbon.RibbonControlHost.ResetForeColor">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.ResetForeColor.html#C1_Win_Ribbon_RibbonControlHost_ResetForeColor">ResetForeColor()</a>
        </td>
        <td class="markdown level1 summary"><p>This member is for internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_ResetRightToLeft" data-uid="C1.Win.Ribbon.RibbonControlHost.ResetRightToLeft">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.ResetRightToLeft.html#C1_Win_Ribbon_RibbonControlHost_ResetRightToLeft">ResetRightToLeft()</a>
        </td>
        <td class="markdown level1 summary"><p>This member is for internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_SaveControlHostProperties_System_Xml_XmlWriter_" data-uid="C1.Win.Ribbon.RibbonControlHost.SaveControlHostProperties(System.Xml.XmlWriter)">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.SaveControlHostProperties.html#C1_Win_Ribbon_RibbonControlHost_SaveControlHostProperties_System_Xml_XmlWriter_">SaveControlHostProperties(XmlWriter)</a>
        </td>
        <td class="markdown level1 summary"><p>Saves properties of an <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.html">RibbonControlHost</a> to XML using the specified XmlWriter.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_ShouldSerializeBackColor" data-uid="C1.Win.Ribbon.RibbonControlHost.ShouldSerializeBackColor">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.ShouldSerializeBackColor.html#C1_Win_Ribbon_RibbonControlHost_ShouldSerializeBackColor">ShouldSerializeBackColor()</a>
        </td>
        <td class="markdown level1 summary"><p>This member is for internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_ShouldSerializeFont" data-uid="C1.Win.Ribbon.RibbonControlHost.ShouldSerializeFont">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.ShouldSerializeFont.html#C1_Win_Ribbon_RibbonControlHost_ShouldSerializeFont">ShouldSerializeFont()</a>
        </td>
        <td class="markdown level1 summary"><p>This member is for internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_ShouldSerializeForeColor" data-uid="C1.Win.Ribbon.RibbonControlHost.ShouldSerializeForeColor">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.ShouldSerializeForeColor.html#C1_Win_Ribbon_RibbonControlHost_ShouldSerializeForeColor">ShouldSerializeForeColor()</a>
        </td>
        <td class="markdown level1 summary"><p>This member is for internal use only.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_ShouldSerializeRightToLeft" data-uid="C1.Win.Ribbon.RibbonControlHost.ShouldSerializeRightToLeft">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.ShouldSerializeRightToLeft.html#C1_Win_Ribbon_RibbonControlHost_ShouldSerializeRightToLeft">ShouldSerializeRightToLeft()</a>
        </td>
        <td class="markdown level1 summary"><p>This member is for internal use only.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="events">Events
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_BackColorChanged" data-uid="C1.Win.Ribbon.RibbonControlHost.BackColorChanged">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.BackColorChanged.html">BackColorChanged</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when the value of the BackColor property changes.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_Click" data-uid="C1.Win.Ribbon.RibbonControlHost.Click">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.Click.html">Click</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when the hosted control is clicked.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_DoubleClick" data-uid="C1.Win.Ribbon.RibbonControlHost.DoubleClick">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.DoubleClick.html">DoubleClick</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when the hosted control is double-clicked.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_DragDrop" data-uid="C1.Win.Ribbon.RibbonControlHost.DragDrop">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.DragDrop.html">DragDrop</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when the user drags an item and the user releases the mouse button, indicating that the item should be dropped into the hosted control.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_DragEnter" data-uid="C1.Win.Ribbon.RibbonControlHost.DragEnter">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.DragEnter.html">DragEnter</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when the user drags an item into the client area of the hosted control.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_DragLeave" data-uid="C1.Win.Ribbon.RibbonControlHost.DragLeave">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.DragLeave.html">DragLeave</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when the user drags an item and the mouse pointer is no longer over the client area of the hosted control.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_DragOver" data-uid="C1.Win.Ribbon.RibbonControlHost.DragOver">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.DragOver.html">DragOver</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when the user drags an item over the client area of the hosted control.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_EnabledChanged" data-uid="C1.Win.Ribbon.RibbonControlHost.EnabledChanged">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.EnabledChanged.html">EnabledChanged</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when the value of the Enabled property changes.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_Enter" data-uid="C1.Win.Ribbon.RibbonControlHost.Enter">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.Enter.html">Enter</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when the hosted control is entered.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_ForeColorChanged" data-uid="C1.Win.Ribbon.RibbonControlHost.ForeColorChanged">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.ForeColorChanged.html">ForeColorChanged</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when the value of the ForeColor property changes.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_GiveFeedback" data-uid="C1.Win.Ribbon.RibbonControlHost.GiveFeedback">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.GiveFeedback.html">GiveFeedback</a>
        </td>
        <td class="markdown level1 summary"><p>Fires during a drag operation.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_GotFocus" data-uid="C1.Win.Ribbon.RibbonControlHost.GotFocus">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.GotFocus.html">GotFocus</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when the hosted control receives the focus.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_KeyDown" data-uid="C1.Win.Ribbon.RibbonControlHost.KeyDown">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.KeyDown.html">KeyDown</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when a key is pressed while the hosted control has focus.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_KeyPress" data-uid="C1.Win.Ribbon.RibbonControlHost.KeyPress">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.KeyPress.html">KeyPress</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when a key is pressed while the hosted control has focus.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_KeyUp" data-uid="C1.Win.Ribbon.RibbonControlHost.KeyUp">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.KeyUp.html">KeyUp</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when a key is released while the hosted control has focus.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_Leave" data-uid="C1.Win.Ribbon.RibbonControlHost.Leave">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.Leave.html">Leave</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when the input focus leaves the hosted control.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_LostFocus" data-uid="C1.Win.Ribbon.RibbonControlHost.LostFocus">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.LostFocus.html">LostFocus</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when the hosted control loses the focus.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_MouseDown" data-uid="C1.Win.Ribbon.RibbonControlHost.MouseDown">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.MouseDown.html">MouseDown</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when the user presses a mouse button on the hosted control.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_MouseHover" data-uid="C1.Win.Ribbon.RibbonControlHost.MouseHover">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.MouseHover.html">MouseHover</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when the mouse pointer hovers over the hosted control.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_MouseMove" data-uid="C1.Win.Ribbon.RibbonControlHost.MouseMove">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.MouseMove.html">MouseMove</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when the user moves the mouse over the hosted control.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_MouseUp" data-uid="C1.Win.Ribbon.RibbonControlHost.MouseUp">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.MouseUp.html">MouseUp</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when the user releases a mouse button over the hosted control.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_Paint" data-uid="C1.Win.Ribbon.RibbonControlHost.Paint">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.Paint.html">Paint</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when the hosted control is redrawn.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_QueryContinueDrag" data-uid="C1.Win.Ribbon.RibbonControlHost.QueryContinueDrag">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.QueryContinueDrag.html">QueryContinueDrag</a>
        </td>
        <td class="markdown level1 summary"><p>Fires during a drag-and-drop operation and allows the drag source to determine whether the drag-and-drop operation should be canceled.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_Resize" data-uid="C1.Win.Ribbon.RibbonControlHost.Resize">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.Resize.html">Resize</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when the hosted control is resized.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_RightToLeftChanged" data-uid="C1.Win.Ribbon.RibbonControlHost.RightToLeftChanged">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.RightToLeftChanged.html">RightToLeftChanged</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when the value of the RightToLeft property changes.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_TextChanged" data-uid="C1.Win.Ribbon.RibbonControlHost.TextChanged">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.TextChanged.html">TextChanged</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when the value of the <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.Text.html#C1_Win_Ribbon_RibbonControlHost_Text">Text</a> property changes.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_Validated" data-uid="C1.Win.Ribbon.RibbonControlHost.Validated">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.Validated.html">Validated</a>
        </td>
        <td class="markdown level1 summary"><p>Fires after the contents of the hosted control have been validated.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_Validating" data-uid="C1.Win.Ribbon.RibbonControlHost.Validating">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.Validating.html">Validating</a>
        </td>
        <td class="markdown level1 summary"><p>Fires to validate the contents of the hosted control before it loses focus.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_Ribbon_RibbonControlHost_VisibleChanged" data-uid="C1.Win.Ribbon.RibbonControlHost.VisibleChanged">
          <a class="xref" href="C1.Win.Ribbon.RibbonControlHost.VisibleChanged.html">VisibleChanged</a>
        </td>
        <td class="markdown level1 summary"><p>Fires when the value of the Visible property changes.</p>
</td>
      </tr>
    </tbody>
  </table>

</div>
