mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-03-30 21:01:38 -04:00
Make fields readonly Remove unnecessary casts Format document Remove unnecessary usings Sort usings Use file-level namespaces Order modifiers
11 lines
161 B
C#
11 lines
161 B
C#
namespace HangoverAvalonia.Views;
|
|
|
|
public partial class MainWindow
|
|
{
|
|
private void cliTab_VisibleChanged(bool isVisible)
|
|
{
|
|
if (!isVisible)
|
|
return;
|
|
}
|
|
}
|