ソースを参照

Adding files I forgot to save in last commit

Kenric Nugteren 11 ヶ月 前
コミット
0eb86fc40a

+ 1 - 1
prs.desktop/Panels/DeliveredOnSite/DeliveredOnSitePanel.xaml

@@ -47,7 +47,7 @@
 
         </Border>
 
-        <local:DeliveredOnSiteGrid Grid.Row="1" Margin="0,2,0,0" x:Name="Items" />
+        <local:DeliveredOnSiteGrid Grid.Row="1" Margin="0,2,0,0" x:Name="Items" OnReconfigure="Items_OnReconfigure"/>
 
     </Grid>
 

+ 2 - 1
prs.desktop/Panels/Products/Master List/ProductsPanel.xaml

@@ -45,7 +45,8 @@
                     
                     <local:ProductsGrid 
                         x:Name="Products"
-                        AfterRefresh="Products_AfterRefresh"/>
+                        AfterRefresh="Products_AfterRefresh"
+                        OnReconfigure="Products_OnReconfigure"/>
 
                 </dynamicgrid:DynamicSplitPanel.Master>
 

+ 1 - 1
prs.desktop/Panels/Products/Movements/StockMovementPanel.xaml

@@ -101,6 +101,6 @@
 
         </syncfusion:SfGridSplitter>
         <local:StockMovementGrid x:Name="Movements" AllowNullLocation="True" AllowNullBatch="True" Grid.Row="1"
-                                 Grid.Column="2" />
+                                 Grid.Column="2" OnReconfigure="Movements_OnReconfigure"/>
     </Grid>
 </UserControl>

+ 1 - 1
prs.desktop/Panels/ReadyToGo/ReadyToGoPanel.xaml

@@ -35,7 +35,7 @@
             </Grid>
         </Border>
 
-        <local:ReadyToGoGrid x:Name="Items" Grid.Row="1" Grid.Column="0" />
+        <local:ReadyToGoGrid x:Name="Items" Grid.Row="1" Grid.Column="0" OnReconfigure="Items_OnReconfigure"/>
 
     </Grid>
 

+ 1 - 1
prs.desktop/Panels/Suppliers/SupplierPanel.xaml

@@ -30,7 +30,7 @@
                 </dynamicGrid:DynamicTabItem>
                 
                 <dynamicGrid:DynamicTabItem x:Name="Products" Header="Products">
-                    <local:SupplierProductGrid x:Name="SupplierProducts" />
+                    <local:SupplierProductGrid x:Name="SupplierProducts" OnReconfigure="SupplierProducts_OnReconfigure"/>
                 </dynamicGrid:DynamicTabItem>
                 
                 <dynamicGrid:DynamicTabItem x:Name="Spreadsheets" Header="Spreadsheets">

+ 2 - 1
prs.desktop/Panels/Timesheets/TimesheetPanel.xaml

@@ -58,6 +58,7 @@
                 <TextBox x:Name="Search" Grid.Column="11" KeyUp="Search_KeyUp" />
             </Grid>
         </Border>
-        <local:TimesheetGrid x:Name="TimeSheets" Grid.Row="1" Margin="0,2,0,0" />
+        <local:TimesheetGrid x:Name="TimeSheets" Grid.Row="1" Margin="0,2,0,0"
+                             OnReconfigure="TimeSheets_OnReconfigure"/>
     </Grid>
 </UserControl>