Rewrote Reference class

This commit is contained in:
2014-08-30 10:24:01 +03:00
parent a3fdc31caa
commit 520eed12a6
18 changed files with 478 additions and 85 deletions

View File

@ -6,6 +6,7 @@
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<TextBox Name="text" AcceptsReturn="True" />
<TextBox Name="text" AcceptsReturn="True"
TextChanged="text_TextChanged"/>
</Grid>
</UserControl>

View File

@ -32,5 +32,10 @@ namespace RainmeterStudio.TextEditorPlugin
text.Text = txt.ToString();
}
private void text_TextChanged(object sender, TextChangedEventArgs e)
{
_document.IsDirty = true;
}
}
}