aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/app.config
blob: cacd4cd7760f1735bd96b33a1bb167961e525e53 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Reactive.Core" publicKeyToken="94bc3704cddfc263" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-3.0.3000.0" newVersion="3.0.3000.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>
doc\license.txt) using Tango.Scripting.Editors.Utils; using System; namespace Tango.Scripting.Editors.Editing { /// <summary> /// Contains classes for handling weak events on the Caret class. /// </summary> public static class CaretWeakEventManager { /// <summary> /// Handles the Caret.PositionChanged event. /// </summary> [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1034:NestedTypesShouldNotBeVisible")] public sealed class PositionChanged : WeakEventManagerBase<PositionChanged, Caret> { /// <inheritdoc/> protected override void StartListening(Caret source) { source.PositionChanged += DeliverEvent; } /// <inheritdoc/> protected override void StopListening(Caret source) { source.PositionChanged -= DeliverEvent; } } } }