# C1.WPF.Schedule.C1Scheduler.DataSourceItemSynchronized

## Content

<div class="doc-site-dotnet-api-container">




<h1 id="C1_WPF_Schedule_C1Scheduler_DataSourceItemSynchronized" data-uid="C1.WPF.Schedule.C1Scheduler.DataSourceItemSynchronized" class="text-break">DataSourceItemSynchronized Event
</h1>
<div class="markdown level0 summary"><p>Occurs when changes made to one of the <a class="xref" href="C1.WPF.Schedule.C1Scheduler.DataStorage.html#C1_WPF_Schedule_C1Scheduler_DataStorage">DataStorage</a> collections
(for example, to <span class="xref">C1.Schedule.AppointmentStorage.Appointments</span>)
has been fully reflected in the storage underlying data source.</p>
</div>
<div class="markdown level0 conceptual"></div>
<h6><strong>Namespace</strong>: <a class="xref" href="C1.WPF.Schedule.html">C1.WPF.Schedule</a></h6>
<h6><strong>Assembly</strong>: C1.WPF.Schedule.dll</h6>
<h5 id="C1_WPF_Schedule_C1Scheduler_DataSourceItemSynchronized_syntax">Syntax</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public event DataSourceItemSynchronizedEventHandler DataSourceItemSynchronized</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Event DataSourceItemSynchronized As DataSourceItemSynchronizedEventHandler</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><span class="xref">DataSourceItemSynchronizedEventHandler</span></td>
      <td>Occurs when changes made to one of the  collections (for example, to ) has been fully reflected in the storage underlying data source.</td>
    </tr>
  </tbody>
</table>
<h5 id="C1_WPF_Schedule_C1Scheduler_DataSourceItemSynchronized_remarks"><strong>Remarks</strong></h5>
<div class="markdown level0 remarks"><p>If properties of an item of the <a class="xref" href="C1.WPF.Schedule.C1Scheduler.DataStorage.html#C1_WPF_Schedule_C1Scheduler_DataStorage">DataStorage</a> collection are
changed between BeginEdit and EndEdit calls performed on the item, this
event will not be raised until the EndEdit method will be called.</p>
<p>
Use this event if you want to update a back store of your data source only
after the changes to a corresponding collection have been fully completed.
For example, if you use ADO.NET DataSet as a data source, you can commit
the changes made in a DataRow as a result of changes in the collection item
to the underlying database.
</p>
</div>
</div>
