lizka.flex@outlook.com 2 years ago
parent
commit
ed9a4e6592
2 changed files with 6 additions and 1 deletions
  1. 1 1
      Agents/Add.xaml
  2. 5 0
      Agents/Add.xaml.cs

+ 1 - 1
Agents/Add.xaml

@@ -22,7 +22,7 @@
             </StackPanel>
             <StackPanel Orientation="Horizontal">
                 <Label Content="Логотип"/>
-                <Button x:Name="btnLogo1" Content="Изменить логотип" Width="200" Height="20" Background="#FFC4FAFD"/>
+                <Button x:Name="btnLogo1" Content="Изменить логотип" Width="200" Height="20" Background="#FFC4FAFD" Click="btnLogo1_Click"/>
             </StackPanel>
             <StackPanel Orientation="Horizontal">
                 <Label Content="Адресс"/>

+ 5 - 0
Agents/Add.xaml.cs

@@ -39,5 +39,10 @@ namespace Agents
             
             BaseConnect.baseconnect.SaveChanges();
         }
+
+        private void btnLogo1_Click(object sender, RoutedEventArgs e)
+        {
+
+        }
     }
 }