আমার ডাব্লুপিএফ অ্যাপ্লিকেশনটির মূল উইন্ডোটির জন্য আমার নীচের এক্সএএমএল রয়েছে, আমি d:DataContext
নীচের নকশার সময়টি সেট করার চেষ্টা করছি , যা আমি আমার বিভিন্ন ব্যবহারকারী কন্ট্রোলগুলির জন্য সফলভাবে করতে পারি, তবে যখন আমি এটি করার চেষ্টা করি তখন এটি আমাকে এই ত্রুটি দেয় জানলা...
Error 1 The property 'DataContext' must be in the default namespace or in the element namespace 'http://schemas.microsoft.com/winfx/2006/xaml/presentation'. Line 8 Position 9. C:\dev\bplus\PMT\src\UI\MainWindow.xaml 8 9 UI
<Window x:Class="BenchmarkPlus.PMT.UI.MainWindow"
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"
xmlns:UI="clr-namespace:BenchmarkPlus.PMT.UI"
xmlns:Controls="clr-namespace:BenchmarkPlus.PMT.UI.Controls"
d:DataContext="{d:DesignInstance Type=UI:MainViewModel, IsDesignTimeCreatable=True}"
Title="MainWindow" Height="1000" Width="1600" Background="#FF7A7C82">
<Grid>
<!-- Content Here -->
</grid>
</Window>