Мой дизайнер wpf не загружается, потому что он говорит, что не может найти сборку System.web, и я понятия не имею, что wpf имеет отношение к System.web
Любая идея?
Вот одна из страниц XAML:
<UserControl x:Class="RadinFarazJamAutomationSystem.UserControls.ctrlPriceManagement"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="300" Height="200" Loaded="UserControl_Loaded" Width="300" FlowDirection="RightToLeft" d:DesignWidth="300">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="1*" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="165*" />
</Grid.RowDefinitions>
<Button Content="ثبت" Grid.Row="3" Height="23" HorizontalAlignment="Left" Margin="5" Name="btnSave" VerticalAlignment="Center" Width="80" Click="btnSave_Click" Grid.Column="1" />
<Label Content="نرخ دلار" HorizontalAlignment="Left" Margin="5" VerticalAlignment="Center" />
<Label Content="درصد سود مشتری" Grid.Row="1" Height="28" HorizontalAlignment="Left" Margin="5" VerticalAlignment="Center" />
<Label Content="درصد سود همکار" Grid.Row="2" Margin="5" VerticalAlignment="Center" />
<TextBox Grid.Column="1" HorizontalAlignment="Stretch" Margin="5" Name="txtDollarPrice" VerticalAlignment="Center" />
<TextBox Grid.Column="1" Grid.Row="1" HorizontalAlignment="Stretch" Margin="5" Name="txtCustomerProfit" VerticalAlignment="Top" />
<TextBox Grid.Column="1" Grid.Row="2" Height="23" HorizontalAlignment="Stretch" Margin="5" Name="txtColleagueProfit" VerticalAlignment="Top" />
</Grid>
, но это не относится к xaml, потому что на каждой странице есть одна и та же ошибка.Все было хорошо, когда однажды я вижу эту ошибку на каждой странице, и я не знаю, что я сделал, что могло вызвать эту ошибку.