System.DivideByZeroException в UWP - PullRequest
       37

System.DivideByZeroException в UWP

0 голосов
/ 10 февраля 2019

Итак, я сделал некоторые обновления для моей Microsoft Visual Studio.Раньше мой флипвью UWP работал отлично.В основном мой Flipview читает изображения из местной библиотеки изображений.И теперь, если я запускаю свой UWP, появляется это исключение!

System.DivideByZeroException
  HResult=0x80020012
  Message=Attempted to divide by zero.
  Source=TMD_Latest
  StackTrace:
   at TMD_Latest.Views.MainPage.ChangeImage(Object sender, Object o) in C:\Users\alish\source\repos\TMD_Latest\TMD_Latest\Views\MainPage.xaml.cs:line 97



 private void ChangeImage(object sender, object o)
        {

            //Get the number of items in the flip view
            var totalItems = TheFlipView.Items.Count;
            //Figure out the new item's index (the current index plus one, if the next item would be out of range, go back to zero)


//This line below is the exception!
            var newItemIndex = (TheFlipView.SelectedIndex + 1) % totalItems;

            //Set the displayed item's index on the flip view

            TheFlipView.SelectedIndex = newItemIndex;
        }

Мой xaml:

<Grid VariableSizedWrapGrid.ColumnSpan="5"
                  VariableSizedWrapGrid.RowSpan="5"
                  HorizontalAlignment="Left"
                  VerticalAlignment="Top"
                  Padding="0 30 20 20"
                   Margin="200,-100,0,10"
                  Background="Transparent">
                <x21:Grid.RowDefinitions>
                    <x21:RowDefinition Height="405*"/>
                    <x21:RowDefinition Height="21*"/>
                    <x21:RowDefinition Height="425*"/>
                </x21:Grid.RowDefinitions>
                <FlipView x:Name="TheFlipView"
            SelectionChanged="DisplayedItemChanged" Margin="-235,205.6,30,-1221.6" x21:Grid.Row="2"  >
                    <FlipView.ItemTemplate>
                        <DataTemplate>
                            <Grid Margin="0,0,0,10" >
                                <Image HorizontalAlignment="Center"  VerticalAlignment="Stretch"  Source="{Binding}"
                        Stretch="Fill" Margin="0,-200,0,0" />
                            </Grid>
                        </DataTemplate>
                    </FlipView.ItemTemplate>
                </FlipView>

            </Grid>

Пожалуйста, помогите :(

1 Ответ

0 голосов
/ 10 февраля 2019

Как упоминалось @Abestrad, это происходит потому, что правая часть оператора остатка равна нулю.Как уже упоминалось здесь :

Результатом x % y является значение, полученное x - (x / y) * y.Если y равен нулю, выдается System.DivideByZeroException.

Один из способов решить эту проблему в вашем случае - просто заключить оператор остатка в условие if:

if (totalItems > 0)
{
    var newItemIndex = (TheFlipView.SelectedIndex + 1) % totalItems; 

    //Set the displayed item's index on the flip view 
    TheFlipView.SelectedIndex = newItemIndex;
}
...