What about the onProperty changed ?? u did not continue how it is used later
@ViniciusSchneiderRS8 жыл бұрын
Great guy, always explaining very well what is difficult to understand in web pages . Saved me again!
@HoussemDellai8 жыл бұрын
+Vinicius Schneider thank you for that bit of Adrenaline :)
@sourabhchopade97506 жыл бұрын
Can you please upload a video on how to use mvvm light(Galasoft) with Xamarin.Form in VS2017.
@v2k20088 жыл бұрын
@Houseem, Thanks a lot.. You've cleared my lots of doubt and explained every piece of code..Keep posting..
@HoussemDellai8 жыл бұрын
Thanks for the kind words :)
@hosnimahdhi65293 жыл бұрын
Go ahead, you are the best for starters
@thomasnielsen74665 жыл бұрын
Good presentation, I did not know about the binding context in xaml and advantages.
@GotHobby7 жыл бұрын
Would it be good idea to make EmployeesServices a static class? I do not see a need to instantiate it
@elijos31108 жыл бұрын
Hi, thanks for your time, im having troubles showing the list on the maing page, i put a breakpoint on the employeeservices and gets bind properly, but when its showed on the main page shows the list but not with the values we set on the employee services, it only shows the words XamarinDemoapp.ViewModels, not the word i set for example, instead of appears Mohamed Name, shows XamarinDemoapp.ViewModels , any suggestion? thanks .
@lolwatch35998 жыл бұрын
I don't know why I can't using shortcut to auto show list suggest at xaml? What need I do?
@jorgetinocomx6 жыл бұрын
Hi Houssem, nice work. I have a question. Where would you put your business logic? I mean, I guess Models have only the Data Representation and ViewModel it´s like glue between Views and Models. But what happen if I have to do some validations or several actions.(business logic)
@this.developer4158 жыл бұрын
hello @Houssem Dellai i'm getting error at " PropertyChanged(this,new PropertyChangedEventArgs(propertyName));" this line saying An exception of type 'System.NullReferenceException' occurred in Project.DLL but was not handled in user code
@luisfbadel6 жыл бұрын
Thanks a lot. This is exactly what I've been looking for, you are a genius!!
@josecarlosmacoratti8 жыл бұрын
Good Job, Houssem I'm learning a lot with your videos
@ahmadmeithaluny25517 жыл бұрын
السلام عليكم كيف ارفع صورة الى ( sql server بواسطة web service )الله يعطيك العافية
@nitinchavan99337 жыл бұрын
I am unable to bind Employee list in xmal code.Application gets crashed every time.
@topmangarbuja82407 жыл бұрын
Exact same problem. here
@abdourashad75556 жыл бұрын
Same My Problem but I reviewed the spilling , I found many errors and finally the problem solved
@lordmorgoth76 жыл бұрын
You may have resolved the issue, I'm answering in order to prevent others to run into the same issue. Remove the ";assembly=XamarinDemoApp" it runs fine for me
@werdhack6 жыл бұрын
Why is the GetEmployees method in its own class rather than in the ViewModel?
@RohitKumar-fn8rr7 жыл бұрын
what is the difference between SendAsync and PostAsync??
@jude61966 жыл бұрын
I'm not getting the options which u get in ur resharper. I'm using VS 2017.
@syntaxerror0010007 жыл бұрын
@Houssem What is the advantage of using mvvm library like mvvmCross?
@AJ-or5om7 жыл бұрын
@Houseem I'm using visual studio 2017, the code syntax seem of change. I'm unable to bind to the EmployeeList.
@EriAirlangga8 жыл бұрын
Bookmarked. On flight. Will watch later
@redarismail57777 жыл бұрын
Thank you so much for your help, Could you please explain what if we use iObservalebcollection instead of iNotify
@adeelmalik26428 жыл бұрын
AOA i am new in xamrin plz tell me why we use data template and itemtemplate in list view
@chetanacharya96317 жыл бұрын
Thank you sir ! That was very easy to understand !
@PhillipMwaniki8 жыл бұрын
Dude you good. Microsoft should put you in MVA
@edmondikacajBajze8 жыл бұрын
Hello i made a app in xamarin form my first app my first work in xamarin couze i work in web developper but i have a problem. The problem is this when dhe app run i my phone it need 6 10 sec to open show just white screen or blank screen i install some plugins as connection maps newton.json etc. Please can you explain why my app run slowly and how to fix that problem
@abdellatifer-razzouqi60585 жыл бұрын
how i can , use backgrounding services in xamarin.forms ?
@jcevangelista42008 жыл бұрын
What's the use of the "?" question mark in PropertyChanged method in 12:50?
@Kendo30658 жыл бұрын
PropertyChanged? => if (PropertyChanged != null) { PropertyChanged(...);} Check if PropertyChanged is null, if not invoke PropertyChanged Event Handler.
@jcevangelista42008 жыл бұрын
Is it the same like this? protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null) { var handler = PropertyChanged; if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName)); }
@Kendo30658 жыл бұрын
yeap.
@jcevangelista42008 жыл бұрын
Alright Sir. Thank you so much :)
@HoussemDellai8 жыл бұрын
that is it :)
@pardeepahlawat59835 жыл бұрын
Can you make a video, how to read xml file from remote or local place and load the xml data in ListView in Xamarin Forms
@KenjieMojar7 жыл бұрын
is there a link to part 2? also is the code behind should be in ViewModel as well? is that possible/recommended?
@werdhack6 жыл бұрын
The code behind and its corresponding Xaml are partial classes and cannot be separated into different folders.
@scarecrowgaming9255 жыл бұрын
youtube plug-in is not compatible error :-/
@DarylsWorld3 жыл бұрын
Thank you so much Houssem!
@himanshudwivedi5338 жыл бұрын
@Houseem, Which visual studio you use for development. Also is it necessary the RAM size above 4 GB. I am developing the app using visual studio community 2015, I am facing problem while deploying window UWP app on emulator it displays error "Not enough memory available in the system to start an emulator that uses 512 MB startup RAM"
@HoussemDellai8 жыл бұрын
You can work with 4 GB of RAM, but you'll have to close any program you are not using, especially Chrome windows :)
@jcevangelista42008 жыл бұрын
Does it matter if i write my code in .xaml or in .xaml.cs format? Thank you for the answer.
@markdeanilvicente72578 жыл бұрын
It's the same output but it's preferable to write it on xaml. Some code can be write in xaml.cs but just write it in minimal.
@nadaalangari70207 жыл бұрын
السلام عليكم فيه اداه كنت منزلها باحد مقاطعك اللي هي تسهل عليك كتابه الاكواد كنت بنزلها ونسيت اسمها وبحثت بالمقاطع وضيعت المقطع مالقيتها ممكن تكتب لي اسم الاداه
@ansbabgi4096 жыл бұрын
Resharper
@mayuriroy60617 жыл бұрын
This is awesome!! So glad i found you. If you could speak a little louder, it would be even better. Thanks a ton!
@sergiocakmak8 жыл бұрын
thank you Houssem this video help me so much God bless you
@malaythakershi247 жыл бұрын
Hello Houssem, your video tutorials have been a great help. Is complete source code available on github? I appreciate.
@HoussemDellai7 жыл бұрын
Thank you Malay for your question. Unfortunately I did not published the source code for this video.
@malaythakershi247 жыл бұрын
Houssem Dellai do you plan to? If not too much trouble, it will be even more helpful. But anyway it is completely up to you. Thanks again.
@HoussemDellai7 жыл бұрын
Malay you might find this code interesting github.com/HoussemDellai/CheapIdeas. It is project that looms the same as here.
@lucapalonca8118 жыл бұрын
Hi, how can I perform a Navigation.pushAysn() using MVVM pattern?
@HoussemDellai8 жыл бұрын
You should use either MVVM Light or Prism (kzbin.info/www/bejne/eoq1fZanfJd1d7s) frameworks :)
@lucapalonca8118 жыл бұрын
+Houssem Dellai Thank you for your answer. Another question, which do you prefer? Prism or MVVM light? :)
@HoussemDellai8 жыл бұрын
MVVM Light is becoming alittle old and Prism sounds like the new star :)
@unparadigman8 жыл бұрын
Why I cant use the Intelillence in Xaml ? Have you got any idea???
@victoreriksson54128 жыл бұрын
You need to install resharper :)
@unparadigman8 жыл бұрын
Thanks!
@BachPhotography7 жыл бұрын
Every time I get to the Binding section, I get this error: ViewModels:MainViewModel not found in xmlns clr-namespace:XamarinDemoApp.ViewModels;assembly=XamarinDemoApp
@grzegorzgiera58827 жыл бұрын
same problem here, did u solved it?
@nadirhamidou38116 жыл бұрын
you need just to delete "assembly=xxxxxxx"
@amitsrivastav8188 жыл бұрын
Hi @Houssem , First of all i thank to you for such kind of amazing video tutorials , i am new in xamarin and in our company mvvm patern is not used at all and we are writing the code in .cs file so can you make a video without using xaml how we can implement mvvm . Please do it .....Thanks
@obsdark7 жыл бұрын
What proyect type is that than you are actualy making?, i don't have a MainPage.xaml but a MainActivity.cs instead. I'm new in android, any usefull answer in this would be much apreciated
@HoussemDellai7 жыл бұрын
You should choose Xamarin.Forms not Android, when you create new project.
@usmansheikh95447 жыл бұрын
Houssem Dellai in my visual studio 2015 there is no option for Xamarin.Form I have installed xamarin i have choose New Project --> c# -->cross plateform --> but in this menu there is no xamarin from option please help me
@HoussemDellai7 жыл бұрын
Usman Sheikh try to restart VS or reinstall xamarin
@HoussemDellai7 жыл бұрын
Make sure you select C# -> Cross Platform when creating new project
@usmansheikh95447 жыл бұрын
yeah i am sure
@superz79408 жыл бұрын
hey buddy,i am from china, i like your video,it's so easy to learn from your work----MVVM example. thank you very much! i expect your next video!
@HoussemDellai8 жыл бұрын
Thanks for the encouragement :)
@mandardesai38418 жыл бұрын
sir i have general question 1) write code in xaml file or write code in cs file (design and business logic ), which is beneficial and why 2)i choose .cs file because i don't know much about xaml so what is disadvantage Thank you
@HoussemDellai8 жыл бұрын
+mandy .netguy it is okay to write UI code into both.xaml and .xaml.cs. But for business code, it is better to write it into your ViewModels.
@mandardesai38418 жыл бұрын
Thank you waiting second part
@jcevangelista42008 жыл бұрын
@Houssem Dellai I copied your code exactly but I wasn't able to make it work. Can i send my code to you?
@HoussemDellai8 жыл бұрын
yes, please do :)
@jcevangelista42008 жыл бұрын
What's your email Sir?
@HoussemDellai8 жыл бұрын
You can use houssem.dellai@gmail.com :)
@Napstergucio1247 жыл бұрын
That's because you copied the code instead of learning and understanding. :/
@moslimdev56166 жыл бұрын
excellent جزاك الله خيرا
@sumitsisodia22208 жыл бұрын
How to get intelligence in VS2015 Community and Thanks for clearing my lots of doubt .
@BaganBatuTV7 жыл бұрын
@houseem,,, Thanks you very much for all your tutorial...
@nursyazwaniahmadasri48198 жыл бұрын
can you help me?
@HoussemDellai8 жыл бұрын
Can you tell the case ?
@lombertiniabdoul89345 жыл бұрын
hi houssem, i really need you. Can you help me in my xamarin forms project please
@-crossapp92806 жыл бұрын
hi thanks for your tutorial. its best. can i have your source code?
@vivek74738 жыл бұрын
Good One...
@arvindchourasiya47386 жыл бұрын
Nice keep it up.
@hasanen98 жыл бұрын
very good
@neilsukalikar42578 жыл бұрын
pLEASE work on audio quality man , you taught very nice but sound quality is very poor. Even in your beginners videos sound is not that great.