-
Notifications
You must be signed in to change notification settings - Fork 454
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NUI guides problems #1226
Comments
Hello, @Seoyeon2Kim, @JoogabYun Today I got these issue reports for nui guide pages. |
Hi, I'll handle these problems. |
Hi, @Seoyeon2Kim As you can see, lots of guides use deprecated API and I can't find good alternatives in the newest API (for Popup, Tab etc.). In this case is it better to modify guide to work properly (get rid of errors - for example Tab guide) with deprecated API or maybe don't modify it and leave it as it is? |
Hi @pkalota , |
The PR #1234 for these issues was merged into master branch. If the fix is synced into live branch, the docs.tizen.org will be updated, too. |
FlexContainer
Source: https://docs.tizen.org/application/dotnet/guides/nui/flexcontainer/
TableView
tableView.AddChild( textLabel, new TableView.CellPosition(row, col));
there is required conversionrow
andcol
touint
typeSource: https://docs.tizen.org/application/dotnet/guides/nui/tableview/
PropertyMap - FontStyle
Source: https://docs.tizen.org/application/dotnet/guides/nui/text/
TextField
Source: https://docs.tizen.org/application/dotnet/guides/nui/text/
Popup
popup.MinimumSize = new Size(1032, 184);
topopup.MinimumSize = new Size2D(1032, 184);
, dlogutil says:Source: https://docs.tizen.org/application/dotnet/guides/nui/nui-components/Popup/
Progress
Source: https://docs.tizen.org/application/dotnet/guides/nui/nui-components/Progress/
Slider
Source: https://docs.tizen.org/application/dotnet/guides/nui/nui-components/Slider/
Tab
window.Add(tab);
use undeclared variabletab
utilityBasicTab.IsSelectable = true;
Tab class doesn't containIsSelectable
propertyutilityBasicTab.UnderLineBackgroundColor = color[0];
andSelected = color[0],
use undeclared arraycolor
Source: https://docs.tizen.org/application/dotnet/guides/nui/nui-components/Tab/
Toast
nvisual
is not usedSource: https://docs.tizen.org/application/dotnet/guides/nui/nui-components/Toast/
The text was updated successfully, but these errors were encountered: