# C1.Win.TouchToolKit.C1ZoomPanel.AnimationCompleted

## Content

<div class="doc-site-dotnet-api-container">




<h1 id="C1_Win_TouchToolKit_C1ZoomPanel_AnimationCompleted" data-uid="C1.Win.TouchToolKit.C1ZoomPanel.AnimationCompleted" class="text-break">AnimationCompleted Event
</h1>
<div class="markdown level0 summary"><p>Occurs when animation is completed.</p>
</div>
<div class="markdown level0 conceptual"></div>
<h6><strong>Namespace</strong>: <a class="xref" href="C1.Win.TouchToolKit.html">C1.Win.TouchToolKit</a></h6>
<h6><strong>Assembly</strong>: C1.Win.TouchToolKit.4.8.dll</h6>
<h5 id="C1_Win_TouchToolKit_C1ZoomPanel_AnimationCompleted_syntax">Syntax</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public event EventHandler AnimationCompleted</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Event AnimationCompleted As EventHandler</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.eventhandler">EventHandler</a></td>
      <td>Occurs when animation is completed.</td>
    </tr>
  </tbody>
</table>
<h5 id="C1_Win_TouchToolKit_C1ZoomPanel_AnimationCompleted_examples"><strong>Examples</strong></h5>
<p>
  The following code example shows how to use this event.
</p>
<p>
  This code example is part of a larger example provided for the <a class="xref" href="C1.Win.TouchToolKit.AnimationStartingEventArgs.html">AnimationStartingEventArgs</a> class.
</p>
<pre><code class="lang-csharp">class GcZoomAnimationDemo : Form
{
	private GcZoom _gcZoom1 = new GcZoom();

	public GcZoomAnimationDemo()
	{
		_gcZoom1.Target = this;
		_gcZoom1.AnimationCompleted += _gcZoom1_AnimationCompleted;
	}

	void _gcZoom1_AnimationCompleted(object sender, EventArgs e)
	{
		Console.WriteLine("+++ _gcZoom1_AnimationCompleted +++");
	}
}</code></pre>
<pre><code class="lang-csharp">Class GcZoomAnimationDemo
	Inherits Form
	Private _gcZoom1 As New GcZoom()

	Public Sub New()
		_gcZoom1.Target = Me
		AddHandler _gcZoom1.AnimationCompleted, AddressOf _gcZoom1_AnimationCompleted
	End Sub

	Private Sub _gcZoom1_AnimationCompleted(sender As Object, e As EventArgs)
		Console.WriteLine("+++ _gcZoom1_AnimationCompleted +++")
	End Sub
End Class</code></pre>

</div>
