mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Rewrote Reference class
This commit is contained in:
@ -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>
|
||||
|
@ -32,5 +32,10 @@ namespace RainmeterStudio.TextEditorPlugin
|
||||
|
||||
text.Text = txt.ToString();
|
||||
}
|
||||
|
||||
private void text_TextChanged(object sender, TextChangedEventArgs e)
|
||||
{
|
||||
_document.IsDirty = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user